xref
: /
AliOS-Things-master
/
components
/
py_engine
/
tests
/
pyb
/
switch.py
Home
Annotate
Line#
Scopes#
Navigate#
Raw
Download
current directory
1
from
pyb
import
Switch
2
3
sw
=
Switch
()
4
print
(
sw
())
5
sw
.
callback
(
print
)
6
sw
.
callback
(
None
)
7