Espruino WiFi: WiFi tweaking possible? #4663
Replies: 1 comment
-
Posted at 2018-08-08 by @gfwilliams Yes, absolutely! The WiFi module on Espruino WiFi is a standard ESP8266 running AT command firmware - and the docs for it are here: https://www.espressif.com/sites/default/files/documentation/4a-esp8266_at_instruction_set_en.pdf The best way to reduce power is to stay disconnected from WiFi with the ESP8266 off for as long as possible, but there are some AT commands that might help. To send the command, try:
Posted at 2018-08-08 by Steffen Just tried "AT+RFPOWER=10\r\n" and the ESP's temperature went down noticebly. Thanks! Posted at 2018-08-09 by @gfwilliams Great! That might be an interesting command to add to Espruino WiFi... Does it seem to affect WiFi range for you? Posted at 2018-08-09 by Steffen It doesn't make any difference for me, but the device is only 5 m away from the access point. While RFPOWER takes numbers as argument, there seems to be a direct conversion to dbm, which might be more desirable? If RFVDD works, it seems to be a voltage. In summary: quite a few people might like a new setRfPower(x), a complementary Posted at 2018-08-10 by @gfwilliams I guess it's possible that the PDF file I linked is for a different version of the ESP8266 firmware to the one that's actually on the ESP8266 - which I guess might explain if something like Posted at 2018-08-16 by Steffen The ...=? form returns the possible values, the one without '=' the current value (or vice versa). |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
Posted at 2018-08-08 by Steffen
While my Espruino WiFi works perfectly well I want to reduce the power consumption. Is there a good way to do this? I see there is a Wifi .at module, are the any useful 'at' commands that don't mess up Wifi?
Beta Was this translation helpful? Give feedback.
All reactions