micropython-pico-deepsleep
micropython-pico-deepsleep copied to clipboard
MicroPython - a lean and efficient Python implementation for microcontrollers and constrained systems
I am using your great job thank you. I tried to import bluetooth, however, the error occurs like below: Traceback (most recent call last): File "", line 1, in ImportError:...
Dear @ghubcoder First of all, thank you for your fantastic blog post: https://ghubcoder.github.io/posts/deep-sleeping-the-pico-micropython/ Yes, I found [this already closed issue](https://github.com/ghubcoder/micropython-pico-deepsleep/issues/3), but the comments do only relate to `lightsleep` but not...
The current uf2 file seems to be forked from an early version of the micropython framework and does not include certain core libraries such as usocket. What would it take...
Add minor changes for usage The User is now informed to use time.sleep(1) before using picosleep ( you can change it to your liking 😄)
I use picosleep and I get 6.6ma. It 3x reduced the power usage but it is not like 1.4ma. Here is my code: import picosleep f=open("deepsleep.txt","w") f.write("no") f.close() picosleep.seconds(2592000) #...
I have a pico connected to wireless modem. I can put the modem into sleep mode and your code is fantastic because it puts the pico into deep sleep and...
I've used both picosleep on a non-w pico for awhile now, works great! But I'm running into an issue with the pico w. If you start up the wifi: ```...
Hi, Great work @ghubcoder on this, thank you. To reduce current drawn in 'normal' use, I'm halving the clockspeed thus:- `from machine import freq` `clockspeed = 64 # Default is...
I'm running a simple script and expiencing a loss of time over loops. I believe its around 1 second per picosleep.seconds call. script I'm using: from machine import Pin #import...
I tried building the uf2.file because the precompiled version did not work on my Pico W. picosleep during the evening/night (20.00 - 8.00) makes no difference. Now i have this...