Skip to content

Commit

Permalink
Bump
Browse files Browse the repository at this point in the history
  • Loading branch information
Johboh committed Mar 17, 2024
1 parent d38bf82 commit eefd9d1
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.1"
version: "0.6.2"
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.1",
"version": "0.6.2",
"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.1"
version: "0.6.2"
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.1",
"version": "0.6.2",
"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.1"
version: "0.6.2"
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.1",
"version": "0.6.2",
"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 @@ -22,35 +22,35 @@ There are a set if different variants of this library you can use.
- **EspNowNetworkNode**: This is the node only code. Use this in your node project.
- PlatformIO: Add the following to `libs_deps`:
```
Johboh/EspNowNetworkNode@^0.6.1
Johboh/EspNowNetworkNode@^0.6.2
```
- Add to `idf_component.yml` next to your main component:
```
dependencies:
johboh/EspNowNetworkNode:
version: ">=0.6.1"
version: ">=0.6.2"
```
- **EspNowNetworkHost**: This is the host only code. It contains the basics for receiving messages from the node. But for a real life environment, you want to handle different kind of nodes and application messages, as well as firmware/OTA support for the nodes. For that, you can instead use the **EspNowNetworkHostDriver** (see below).
- PlatformIO: Add the following to `libs_deps`:
```
Johboh/EspNowNetworkHost@^0.6.1
Johboh/EspNowNetworkHost@^0.6.2
```
- Add to `idf_component.yml` next to your main component:
```
dependencies:
johboh/EspNowNetworkHost:
version: ">=0.6.1"
version: ">=0.6.2"
```
- **EspNowNetworkHostDriver**: Same as EspNowNetworkHost, but with support for "virtual" nodes and firmware/OTA updates. See the [Arduino](examples/arduino/host_driver/HostDriver.ino) or [ESP-IDF](examples/espidf/host_driver/main/main.cpp) example.
- PlatformIO: Add the following to `libs_deps`:
```
Johboh/EspNowNetworkHostDriver@^0.6.1
Johboh/EspNowNetworkHostDriver@^0.6.2
```
- Add to `idf_component.yml` next to your main component:
```
dependencies:
johboh/EspNowNetworkHostDriver:
version: ">=0.6.1"
version: ">=0.6.2"
```
- **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.
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.1"
version: "0.6.2"
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.1",
"version": "0.6.2",
"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.1
version=0.6.2
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 eefd9d1

Please sign in to comment.