-
Notifications
You must be signed in to change notification settings - Fork 7.6k
/
Copy pathWiFiModemSleep.ino
95 lines (75 loc) · 3.41 KB
/
WiFiModemSleep.ino
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
/*
WiFi automatic LightSleep
=====================================
This code displays how to use automatic light sleep with an active WiFi connection
and tune WiFi modem sleep modes
This code is under Public Domain License.
Hardware Connections (optional)
======================
Use an ammeter/scope connected in series with a CPU/DevKit board to measure power consumption
Author:
Taras Shcherban <[email protected]>
*/
#include "Arduino.h"
#include <WiFi.h>
#include <HTTPClient.h>
const char *wifi_ssid = "";
const char *wifi_password = "";
void doHttpRequest();
void setup()
{
Serial.begin(115200);
while (!Serial)
; // wait for serial port to connect
// CPU will automatically go into light sleep if no ongoing activity (active task, peripheral activity etc.)
setAutomaticLightSleep(true);
WiFi.begin(wifi_ssid, wifi_password);
// Additionally to automatic CPU sleep a modem can also be setup for a power saving.
// If a WiFi is active - selected modem sleep mode will determine how much CPU will be sleeping.
// There are two functions available:setSleep(mode) and setSleep(mode, listenInterval)
// mode - supports one of three values:
// * WIFI_PS_NONE - No power save
// * WIFI_PS_MIN_MODEM - Minimum modem power saving. In this mode, station wakes up to receive beacon every DTIM period
// * WIFI_PS_MAX_MODEM - Maximum modem power saving. In this mode, interval to receive beacons is determined by the listenInterval parameter
// listenInterval - effective only with a WIFI_PS_MAX_MODEM mode. determines how often will modem (and consequently CPU) wakeup to catch WiFi beacon packets.
// The larger the interval - the less power needed for WiFi connection support. However that comes at a cost of increased networking latency, i.e.
// If your device responds to some external requests (web-server, ping etc.) - larger listenInterval means device takes more to respond.
// Reasonable range is 2..9, going larger would not benefit too much in terms of power consumption. Too large value might result in WiFi connection drop.
// listenInterval is measured in DTIM intervals, which is determined by your access point (typically ~100ms).
WiFi.setSleep(WIFI_PS_MAX_MODEM, 4);
}
void loop()
{
doHttpRequest();
// Serial output is being suspended during sleeping, so without a Flush call logs
// will be printed to the terminal with a delay depending on how much CPU spends in a sleep state
Serial.flush();
// This is a sleep-aware waiting using delay(). Blocking in this manner
// allows CPU to go into light sleep mode until there is some task to do.
// if you remove that delay completely - CPU will have to call loop() function constantly,
// so no power saving will be available
delay(5000);
}
// simulate some job - make an HTTP GET request
void doHttpRequest()
{
if (!WiFi.isConnected())
return;
HTTPClient http;
Serial.print("[HTTP] request...\n");
http.begin("http://example.com/index.html");
int httpCode = http.GET();
if (httpCode > 0)
{
Serial.printf("[HTTP] GET... code: %d\n", httpCode);
if (httpCode == HTTP_CODE_OK)
{
Serial.printf("[HTTP] GET... payload size: %d\n", http.getSize());
}
}
else
{
Serial.printf("[HTTP] GET... failed, error: %s\n", http.errorToString(httpCode).c_str());
}
http.end();
}