Brendan
Brendan
Ironically, the author of that Arduino-pico core also heavily contributed to the esp8266 Arduino core. And `yield()` is often needed in the esp8266 core to let the WiFi stack have...
I just purchased a RPi pico W board, so I'll be better equipped to test the picoSDK support (want to try diagnosing nRF24/RF24#857). Any problems with this issue since adding...
I haven't found any evidence in the picoSDK that mandates `yield()` calls. There is evidence that `yield()` is important for multi-threading in the arduino-pico core when using the FreeRTOS feature...
+1 for an example. Though I'm hoping for something more like a library-agnostic flowchart. The list of libraries are helpful, but their APIs tend to differ which makes interpreting the...
Would it be difficult to show the overall or monthly downloads count? Or should I craft something from the JSON API (using shield.io entrypoint).
For anyone that is curious about a Downloads badge, I was able to craft one for the `pyrf24` package: https://img.shields.io/badge/dynamic/json?label=piwheels%20Downloads&query=%24[%3F(%40[0]%3D%3D%22pyrf24%22)][2]&url=https%3A%2F%2Fwww.piwheels.org%2Fpackages.json The `[2]` in the `query` field focuses on total downloads,...
I know this is an old thread, but I just wanted to mention that the new RP2040's PicoSDK would be the most flexible/easiest way to make this feature happen. Because...
Try using a different channel for one of the networks (preferably not within 2 channels of the other network). So, one network would use `network.begin(90, node_address)` and the other network...
Sorry, I misunderstood the problem a bit. Sounds like you want 2 networks to exist while their non-master nodes can connect to either network? I don't think the libs were...
>non-master nodes can connect to any network initially (they would persist on this network afterwards) then only check for master node (of a certain channel) in a non-master node's `setup()`...