Quantcast
Channel: Raspberry Pi Forums
Viewing all articles
Browse latest Browse all 4909

General • Re: low power state for the pico

$
0
0
The PicoW is not the lowest consumption device out there. Some basic measurements using MicroPython:

Powered with WiFi disabled -> 17-18mA

Code:

wlan = network.WLAN(network.STA_IF)wlan.deinit()
Powered with WiFi enabled -> 35-36mA

Code:

wlan = network.WLAN(network.STA_IF)wlan.active(True)
Once you start serving content the consumption rises to 52-53mA with peaks around 65mA while acquiring connection.

You can get better results, I've read, using C; but the power is still nothing I would call "low power". You could also look at "disabling" the PICO and waking it up periodically.

Statistics: Posted by languer — Sat Dec 14, 2024 1:17 am



Viewing all articles
Browse latest Browse all 4909

Trending Articles