-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathttest.py
89 lines (80 loc) · 3.18 KB
/
ttest.py
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
# ttest.py Demonstrate ways to exit from pyb.standby()
# Copyright 2016-2020 Peter Hinch
# This code is released under the MIT licence
# V0.43 Oct 2020 Use new version of upower.py. Tested on Pyboard D and 1.1.
# V0.4 10th October 2016 Now uses machine.reset_cause()
# draws 32uA between LED flashes runing from flash.
# Doesn't do much running from USB because low power modes would kill the USB interface.
# Pyboard 1.x:
# the blue LED is best avoided in these applications as it currently uses PWM: this can
# lead to some odd effects in time dependent applications.
# Pyboard D:
# LED[3] described as yellow is actually blue.
# You must supply a pull-down for the X1 pin.
# Currently a special firmware build is required for X1 to work.
# All boards:
# Pyboard firmware briefly flashes the green LED on all wakeups.
import pyb
import upower
import machine
tamper = upower.Tamper()
wkup = upower.WakeupPin(
pyb.Pin('X1')) if upower.d_series else upower.wakeup_X1()
# A level of zero triggers
tamper.setup(level=0, freq=16, samples=2, edge=False)
# upower.tamper.setup(level = 1, edge = True) # Falling edge trigger. You must supply a pullup resistor.
rtc = pyb.RTC()
leds = tuple(pyb.LED(x) for x in range(1, 4)) # rgy on V1.x, rgb on D series
for led in leds:
led.off()
reason = machine.reset_cause() # Why have we woken?
if reason in (machine.PWRON_RESET, machine.HARD_RESET, machine.SOFT_RESET): # first boot
rtc.datetime((2020, 8, 6, 4, 13, 0, 0, 0)) # Code to run on 1st boot only
upower.savetime()
if upower.bkpram_ok(): # backup RAM holds valid data
leds[2].on() # Y only
else: # No backup battery, data is garbage
for led in leds:
led.on() # RGY == 1st boot
elif reason == machine.DEEPSLEEP_RESET:
reason = upower.why()
if reason == 'WAKEUP': # green and yellow on timer wakeup
leds[1].on()
leds[2].on()
upower.savetime()
elif reason == 'TAMPER': # red
leds[0].on()
elif reason == 'X1': # red and green on X1 rising edge
leds[0].on()
leds[1].on()
else:
# Prints if a UART is configured
upower.cprint('Unknown: reset?')
t = rtc.datetime()[4:7]
upower.cprint('{:02d}.{:02d}.{:02d}'.format(t[0], t[1], t[2]))
# ensure LED visible before standby turns it off
upower.lpdelay(500)
# Wait for tamper signal to go away
tamper.wait_inactive()
wkup.wait_inactive()
upower.lpdelay(50) # Wait out any contact bounce
# demo of not resetting the wakeup timer after a pin interrupt
try: # ms_left can fail in response to various coding errors
timeleft = upower.ms_left(10000)
except upower.RTCError:
# Coding error: uninitialised - just restart the timer
timeleft = 10000
# Set a minimum sleep duration: too short and it uses less power to stay awake
timeleft = max(timeleft, 1000)
# In real apps this might be longer or you might deal with it in other ways.
rtc.wakeup(timeleft)
# These calls reconfigure hardware and should be done last, shortly before standby()
tamper.enable()
wkup.enable()
if not upower.usb_connected:
# This will set pins hi-z and turn LEDs off
pyb.standby()
else:
for led in leds:
led.off()
leds[1].on() # Green LED: debugging session.