From e425dac6f43c2bd0107bbe65de8fae5a3ccc6e6d Mon Sep 17 00:00:00 2001 From: Timm Bogner <64260873+timmbogner@users.noreply.github.com> Date: Thu, 16 Jun 2022 07:25:15 -0500 Subject: [PATCH] Update README.md --- FDRS_Gateway2000/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/FDRS_Gateway2000/README.md b/FDRS_Gateway2000/README.md index 652ef55..017e965 100644 --- a/FDRS_Gateway2000/README.md +++ b/FDRS_Gateway2000/README.md @@ -6,9 +6,9 @@ Actions define how the gateway reacts to a packet received via each data source. The following commands re-send data instantaneously: ```sendESPNOW(MAC)```, ```sendSerial()```, and ```sendMQTT()```. -The following commands send data to buffers to be released at an interval: ```bufferLoRa(interface)```, ```bufferESPNOW(interface)```, ```bufferSerial()```, and ```bufferMQTT()```. +These 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 it via ESP-NOW to another gateway with the address 0x01: +In this 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); ```