Skip to content

Commit

Permalink
Bump
Browse files Browse the repository at this point in the history
  • Loading branch information
Johboh committed Mar 29, 2024
1 parent 7308730 commit 39b8a97
Show file tree
Hide file tree
Showing 10 changed files with 15 additions and 15 deletions.
2 changes: 1 addition & 1 deletion EspNowNetworkHost/idf_component.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version: "0.6.4"
version: "0.6.5"
description: Library for setting up a network of ESP NOW nodes - Host only
url: https://github.com/Johboh/EspNowNetwork
dependencies:
Expand Down
2 changes: 1 addition & 1 deletion EspNowNetworkHost/library.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
{
"name": "Johan Böhlin"
},
"version": "0.6.4",
"version": "0.6.5",
"license": "MIT",
"repository":
{
Expand Down
2 changes: 1 addition & 1 deletion EspNowNetworkHostDriver/idf_component.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version: "0.6.4"
version: "0.6.5"
description: Library for setting up a network of ESP NOW nodes - Host Driver for simplifying host setup.
url: https://github.com/Johboh/EspNowNetwork
dependencies:
Expand Down
2 changes: 1 addition & 1 deletion EspNowNetworkHostDriver/library.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
{
"name": "Johan Böhlin"
},
"version": "0.6.4",
"version": "0.6.5",
"license": "MIT",
"repository":
{
Expand Down
2 changes: 1 addition & 1 deletion EspNowNetworkNode/idf_component.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version: "0.6.4"
version: "0.6.5"
description: Library for setting up a network of ESP NOW nodes - Node only
url: https://github.com/Johboh/EspNowNetwork
dependencies:
Expand Down
2 changes: 1 addition & 1 deletion EspNowNetworkNode/library.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
{
"name": "Johan Böhlin"
},
"version": "0.6.4",
"version": "0.6.5",
"license": "MIT",
"repository":
{
Expand Down
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,13 @@ There are a set if different variants of this library you can use.
- **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.
- PlatformIO: Add the following to `libs_deps`:
```
Johboh/EspNowNetworkNode@^0.6.4
Johboh/EspNowNetworkNode@^0.6.5
```
- Add to `idf_component.yml` next to your main component:
```
dependencies:
johboh/EspNowNetworkNode:
version: ">=0.6.4"
version: ">=0.6.5"
```
See the [Arduino](examples/arduino/node/Node.ino) or [ESP-IDF](examples/espidf/node/main/main.cpp) for full examples. In short (this is nota complete example):
```c++
Expand All @@ -51,13 +51,13 @@ There are a set if different variants of this library you can use.
- **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](src/host_driver/FirmwareChecker.h) which checks for new firmwares on a HTTP server. It is also possible to implement a custom [Firmware Checker](src/host_driver/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](src/host_driver/FirmwareChecker.h) located [here](firmware%20http%20server).
- PlatformIO: Add the following to `libs_deps`:
```
Johboh/EspNowNetworkHostDriver@^0.6.4
Johboh/EspNowNetworkHostDriver@^0.6.5
```
- Add to `idf_component.yml` next to your main component:
```
dependencies:
johboh/EspNowNetworkHostDriver:
version: ">=0.6.4"
version: ">=0.6.5"
```
See the [Arduino](examples/arduino/host_driver/HostDriver.ino) or [ESP-IDF](examples/espidf/host_driver/main/main.cpp) for full examples. In short (this is nota complete example):
```c++
Expand Down Expand Up @@ -85,13 +85,13 @@ There are a set if different variants of this library you can use.
- **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.
- PlatformIO: Add the following to `libs_deps`:
```
Johboh/EspNowNetworkHost@^0.6.4
Johboh/EspNowNetworkHost@^0.6.5
```
- Add to `idf_component.yml` next to your main component:
```
dependencies:
johboh/EspNowNetworkHost:
version: ">=0.6.4"
version: ">=0.6.5"
```
- **EspNowNetwork**: This is the legacy full library consiting of both the node and the host code (but not the host driver). Not recommended for new projects. Instead, use the induvidual libraries listed above.
Expand Down
2 changes: 1 addition & 1 deletion idf_component.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version: "0.6.4"
version: "0.6.5"
description: Library for setting up a network of ESP NOW nodes
url: https://github.com/Johboh/EspNowNetwork
dependencies:
Expand Down
2 changes: 1 addition & 1 deletion library.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
{
"name": "Johan Böhlin"
},
"version": "0.6.4",
"version": "0.6.5",
"license": "MIT",
"repository":
{
Expand Down
2 changes: 1 addition & 1 deletion library.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name=EspNowNetwork
version=0.6.4
version=0.6.5
author=Johan Böhlin <[email protected]>
maintainer=Johan Böhlin <[email protected]>
sentence=Library for setting up a network of ESP NOW nodes
Expand Down

0 comments on commit 39b8a97

Please sign in to comment.