We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 10471dd commit fcbf16fCopy full SHA for fcbf16f
examples/TianStandby/TianStandby.ino
@@ -17,14 +17,14 @@
17
18
#define MIPS_PIN 32
19
20
-void MIPS_PM(bool sleep) {
+void MipsPM(bool sleep) {
21
pinMode(MIPS_PIN, OUTPUT);
22
digitalWrite(MIPS_PIN, sleep ? LOW: HIGH);
23
}
24
25
void setup() {
26
pinMode(LED_BUILTIN, OUTPUT);
27
- LowPower.companionLowPowerCallback(MIPS_PM);
+ LowPower.companionLowPowerCallback(MipsPM);
28
// Uncomment this function if you wish to attach function dummy when RTC wakes up the chip
29
LowPower.attachInterruptWakeup(RTC_ALARM_WAKEUP, onWakeup, CHANGE);
30
0 commit comments