Meir Armon
Meir Armon
As indicated in this issue: https://github.com/micropython/micropython-lib/issues/328, it would be useful if wait_msg() would return a value if a message was received. A common use case using this library would be:...
### Summary When waking from deep sleep, it could be helpful to know what pins triggered the wake up since the wake pins could be configured to multiple pins. Based...
### Summary Some boards support waking up from deepsleep via GPIO pins (for instance ESP32C3, ESP32C6), but this is not currently supported by MicroPython. This commit adds support for waking...
### Component(s) router ### Is your feature request related to a problem? Please describe. There are several features that I need and I am currently implementing on my own: *...
Both esp32.wake_on_ext1() and esp32.wake_on_gpio() now accept either a single Pin object or a tuple/list of Pin objects, making the common single-pin use case more ergonomic while maintaining backward compatibility. Documentation...