From f0a067358d2769026ea048b1e282ec79603d126e Mon Sep 17 00:00:00 2001 From: Timm Bogner <64260873+timmbogner@users.noreply.github.com> Date: Mon, 13 Jun 2022 00:02:47 -0500 Subject: [PATCH] Update README.md --- FDRS_Gateway2000/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/FDRS_Gateway2000/README.md b/FDRS_Gateway2000/README.md index f6a93c3..652ef55 100644 --- a/FDRS_Gateway2000/README.md +++ b/FDRS_Gateway2000/README.md @@ -8,7 +8,7 @@ The following commands re-send data instantaneously: ```sendESPNOW(MAC)```, ```s The following commands send data to buffers to be released at an interval: ```bufferLoRa(interface)```, ```bufferESPNOW(interface)```, ```bufferSerial()```, and ```bufferMQTT()```. -In the following example, the gateway is set to take any ESP-NOW packet it receives and send it first over the serial port, then re-transmit via ESP-NOW it to another gateway with the address 0x01: +In the following example, the gateway is set to take any ESP-NOW packet it receives and send it first over the serial port, then re-transmit it via ESP-NOW to another gateway with the address 0x01: ``` #define ESPNOWG_ACT sendSerial(); sendESPNOW(0x01); ```