summaryrefslogtreecommitdiffstatshomepage
path: root/tests/ports/stm32/switch.py
blob: 7c44adb136cee7c59874e434ae098b9b12807860 (plain) (blame)
1
2
3
4
5
6
from pyb import Switch

sw = Switch()
print(sw())
sw.callback(print)
sw.callback(None)