Closed crazybanane closed 2 years ago
Hi! How many units do you have? RPIEasy is able to handle units numbered from 1-254.
If you reached the device limit in RPIEasy its easy to raise, you have to edit rpieGlobaly.py and modify TASKS_MAX from 96 to 512 for example, if your Raspberry has enough memory.
just a question, how compatible is the p2p layer with > 255 tasks?
just a question, how compatible is the p2p layer with > 255 tasks?
I do not know either. :)
I said "devices" in Device tab. I guess this is the bottleneck in this case. P2P Units can be 1-254 as i wrote. IDX and PluginID in P2P stored as integers as i saw which can be larger than 255.
Sorry, i do not use P2P nowaday, i think i get the problem. Unit task numbers mirrored accross all units, and ESPEasy limits are lower, does not matter what i change on RPIEasy side, and yes 255 is the max as p2p sensor data structure contains "bytes".
@crazybanane can you tell how many units and how many tasks we are talking about currently?
Hi, at the moment I use up to 4 Nodes (esp32) I use on every Node: 1 Device Task for Battery Monitoring 1 up to 4 Task for Analog in Measurements (actually one every Node only 1)
Thanks for Support,👍
The ESPEasy32 can use 32 tasks as i know, so 4x5 is already possible, just make sure, the senders did not use the same Task numbers for sending data. (task numbers are global)
But I can modify the RPIEasy P2P receiver to assign destination task numbers dynamically, in theory that way the same task number can be used for multiple purposes on the ESP32 side, but it will needs more testing.
Dynamic task number allocation added at commit https://github.com/enesbcs/rpieasy/commit/6899231bf86ab23e6554335e636b892d9f35b08f
It is disabled by default, if you want to try, than please follow the following order on the RPIEasy receiver node:
Device/Task max count raised to 240
Thank you for help will try it
Hello,
I have the Problem that my Devices list for P2P Devices is full. Is there a way that you can write an add on or an function that every Node becomes his own Devices list where I can receive more Informations or is there an easier other way?
My RPI works as Standalone without external network and the ESPs are connecting to them.
I Love the RPIEasy Version thanks for this great Work.