Update README.md

This commit is contained in:
Timm Bogner 2022-06-13 00:02:47 -05:00 committed by GitHub
parent 3843ca00fb
commit f0a067358d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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()```. 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); #define ESPNOWG_ACT sendSerial(); sendESPNOW(0x01);
``` ```