You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -26,13 +26,13 @@ There are a set if different variants of this library you can use.
26
26
-**EspNowNetworkNode**: Use this for your nodes. This library provide a way to setup ESP-NOW and for sending messages, as well as doing OTA updates when the host indicates that a new firmware version is available.
27
27
- PlatformIO: Add the following to `libs_deps`:
28
28
```
29
-
Johboh/EspNowNetworkNode@^0.7.1
29
+
Johboh/EspNowNetworkNode@^0.7.5
30
30
```
31
31
- ESP-IDF: Add to `idf_component.yml` next to your main component:
32
32
```
33
33
dependencies:
34
34
johboh/espnownetworknode:
35
-
version: ">=0.7.1"
35
+
version: ">=0.7.5"
36
36
```
37
37
- Arduino IDE: Search for `EspNowNetworkNode` by `johboh` in the library manager.
38
38
@@ -59,13 +59,13 @@ There are a set if different variants of this library you can use.
59
59
-**EspNowNetworkHostDriver**: Use this for your host. This library receives messages from the nodes and forward or handle the received data by handling nodes as Devices. It also provide a way to perform firmware updates by incoperating a [Firmware Checker](https://github.com/Johboh/EspNowNetworkHostDriver/blob/main/src/FirmwareChecker.h) which checks for new firmwares on a HTTP server. It is also possible to implement a custom [Firmware Checker](https://github.com/Johboh/EspNowNetworkHostDriver/blob/main/src/IFirmwareChecker.h) to match your HTTP server setup. There is an example of a HTTP server to use for the firmware for the default implementation of the [Firmware Checker](https://github.com/Johboh/EspNowNetworkHostDriver/blob/main/src/FirmwareChecker.h) located [here](firmware%20http%20server).
60
60
- PlatformIO: Add the following to `libs_deps`:
61
61
```
62
-
Johboh/EspNowNetworkHostDriver@^0.7.1
62
+
Johboh/EspNowNetworkHostDriver@^0.7.2
63
63
```
64
64
- ESP-IDF: Add to `idf_component.yml` next to your main component:
65
65
```
66
66
dependencies:
67
67
johboh/espnownetworkhostdriver:
68
-
version: ">=0.7.1"
68
+
version: ">=0.7.2"
69
69
```
70
70
- Arduino IDE: Search for `EspNowNetworkHostDriver` by `johboh` in the library manager.
71
71
@@ -95,13 +95,13 @@ There are a set if different variants of this library you can use.
95
95
-**EspNowNetworkHost**: This is just the bare host library, without a Device Manager, Host Driver nor Firmware Checker. I still recommend using the **EspNowNetworkHostDriver**, but if you want to roll the host fully on your own, this is the library to use.
96
96
- PlatformIO: Add the following to `libs_deps`:
97
97
```
98
-
Johboh/EspNowNetworkHost@^0.7.1
98
+
Johboh/EspNowNetworkHost@^0.7.3
99
99
```
100
100
- ESP-IDF: Add to `idf_component.yml` next to your main component:
101
101
```
102
102
dependencies:
103
103
johboh/espnownetworkhost:
104
-
version: ">=0.7.1"
104
+
version: ">=0.7.3"
105
105
```
106
106
- Arduino IDE: Search for `EspNowNetworkHost` by `johboh` in the library manager.
0 commit comments