Skip to content

Commit 380006f

Browse files
Apply suggestions from review
Co-authored-by: Kateryna Lukina <94372596+kateryna-lukina@users.noreply.github.com>
1 parent c712a06 commit 380006f

File tree

1 file changed

+5
-5
lines changed
  • content/hardware/03.nano/boards/nano-esp32/tutorials/esp-now

1 file changed

+5
-5
lines changed

content/hardware/03.nano/boards/nano-esp32/tutorials/esp-now/esp-now.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -59,10 +59,10 @@ As a result of the limited data quantities and its lightweight design ESP-NOW in
5959
ESP-NOW has a limited signal range, typically around 220 meters under ideal conditions. The actual range can vary depending on factors like environmental interference, antenna design, and obstacles in the communication path.
6060

6161
### Interference
62-
Like other wireless communication technologies operating in the 2.4GHz band, ESP-NOW can be susceptible to interference from other devices and Wi-Fi networks. It's essential to choose communication channels carefully to minimize interference and ensure reliable communication.
62+
Like other wireless communication technologies operating in the 2.4 GHz band, ESP-NOW can be susceptible to interference from other devices and Wi-Fi networks. It's essential to choose communication channels carefully to minimize interference and ensure reliable communication.
6363

6464
### No Network Infrastructure
65-
ESP-NOW is designed for point-to-point and point-to-multipoint communication but doesn't provide the infrastructure for building complex network topologies. If your application requires a network with multiple interconnected devices or internet connectivity, you may need to complement ESP-NOW with additional networking solutions.
65+
ESP-NOW is designed for point-to-point and point-to-multipoint communication but doesn't provide the infrastructure for building complex network topologies. If your application requires a network with multiple interconnected devices or Internet connectivity, you may need to complement ESP-NOW with additional networking solutions.
6666

6767
### Limited Data Payload
6868
ESP-NOW is optimized for transmitting smaller amounts of data, with a maximum payload of around 250 bytes. If your application requires high-bandwidth data transfer or large file exchanges, other services such as the [Arduino IoT Cloud](https://cloud.arduino.cc/) might be more suitable.
@@ -80,13 +80,13 @@ ESP-NOW is primarily designed for use with ESP8266 and ESP32 microcontrollers. W
8080

8181
Arduino provides their own service for handling wireless communication called Arduino IoT Cloud. You can read more about it [here](https://docs.arduino.cc/arduino-cloud/).
8282

83-
While the Arduino IoT Cloud offers similar features to the ESP-NOW protocols they are vastly different and should be used for specific usecases. Check the comparison table below for more information.
83+
While the Arduino IoT Cloud offers similar features to the ESP-NOW protocols they are vastly different and should be used for specific use cases. Check the comparison table below for more information.
8484

8585
| | Arduino IoT Cloud | ESP-NOW |
8686
|---------------------|-----------------------------------------------------------------------------|--------------------------------------------------------------------------------|
87-
| Range | Depends on internet connectivity, suitable for global reach. | Approx 220m. |
87+
| Range | Depends on Internet connectivity, suitable for global reach. | Approx. 220 m. |
8888
| Security | Secure communication with encryption and authentication. | Basic security, may need additional measures. |
89-
| Delay | Network-related delays due to internet communication. | Low latency for local communication. |
89+
| Delay | Network-related delays due to Internet communication. | Low latency for local communication. |
9090
| Data Size | Unlimited data (min. Entry plan) | max 250 bytes. |
9191
| Device Compatibility| Compatible with various Arduino boards and IoT devices. | Primarily used with ESP8266 and ESP32 microcontrollers. |
9292
| Protocol | Uses MQTT for communication. | Uses a custom ESP-NOW protocol. |

0 commit comments

Comments
 (0)