Armin
Armin
Hello Pierre, i am afraid that this great library will no longer be maintained by the developer, because the last activity was 10 months ago... Are you using the AES...
I'm eagerly awaiting this feature. :-) 👍 It appears also in 2020: https://github.com/espressif/arduino-esp32/issues/3902 BR, Armin
Hello, I would highly recommend this fork https://github.com/leodesigner/espNowFloodingMeshLibrary2 because unfortunately this library is no longer maintained. leodesigner's examples and the updated library also are working on PlatformIO.
This is a slave demo with [https://github.com/arttupii/espNowFloodingMeshLibrary/issues/url](url): (I cut it out from one of my test programs) ```cpp #include #include "espNowFloodingMeshLibrary2/EspNowFloodingMesh.h" struct MeshProbe_struct { char name[15]; // name of the...
This is a master demo with [https://github.com/arttupii/espNowFloodingMeshLibrary/issues/url](url): (I cut it out from one of my test programs, __untested, should work__) ```cpp #include #include "esp_wifi.h" #include "espNowFloodingMeshLibrary2/EspNowFloodingMesh.h" struct MeshProbe_struct { char...
Hi Marco, the packet size of a ESP-Mesh packet is limited to
Depends on... Are you using WiFi at the same Time? Than WiFi and ESP-Now must have both the same channel. Otherwise my code should work with different channels... BR, Armin
You're right, I forgot something... I copied the code from old test programs, hence the few fragments that didn't fit. I have now cleaned up the code a bit and...
## Master ## ```cpp #include #include #include #include "esp_wifi.h" #include "espNowFloodingMeshLibrary2/EspNowFloodingMesh.h" struct MeshProbe_struct { char name[15]; // name of the mesh master uint64_t TimeStamp; float MPU_Temperature; }; MeshProbe_struct MeshProbe; unsigned...
## Slave ## ```cpp #include #include #include #include "esp_wifi.h" #include "espNowFloodingMeshLibrary2/EspNowFloodingMesh.h" struct MeshProbe_struct { char name[15]; // name of the mesh slave uint64_t TimeStamp; float MPU_Temperature; }; MeshProbe_struct MeshProbe; unsigned...