From 346e98c665ff7f85889ca9165b026eacc0c94691 Mon Sep 17 00:00:00 2001 From: Timm Bogner <64260873+timmbogner@users.noreply.github.com> Date: Tue, 27 Sep 2022 09:26:22 -0500 Subject: [PATCH] Update Gateway.md --- extras/Gateway.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/extras/Gateway.md b/extras/Gateway.md index 403f67f..d8bd7ad 100644 --- a/extras/Gateway.md +++ b/extras/Gateway.md @@ -46,7 +46,7 @@ This option initializes FastLED! I haven't developed this very much, perhaps you ## Peers ### Routing -In addition to reacting to packets from general (unknown) ESP-NOW and LoRa devices, the gateway can also listen for traffic from a specific peer's device address (MAC) and react differently than it would to general traffic. This can be used to 'propel' packets upstream or downstream and allows the user to define different paths for data originating from either direction. The user can define up to two peer addresses each for the ESP-NOW and LoRa interfaces (ESPNOW1 & ESPNOW2 and LORA1 & LORA2). +In addition to reacting to packets from general (unknown) ESP-NOW and LoRa devices, the gateway can also listen for traffic originating from a specific device address (MAC) and react differently than it would to general traffic. This can be used to 'propel' packets upstream or downstream and allows the user to define different paths for data originating from either direction. The user can define up to two peer addresses each for the ESP-NOW and LoRa interfaces (ESPNOW1 & ESPNOW2 and LORA1 & LORA2). ### Buffers Each peer also has a send buffer associated with it. Buffers are enabled by uncommenting their corresponding DELAY macro (ex: ```#define LORAG_DELAY 1000```). When enabled, the gateway will automatically send the buffer contents at the interval specified.