kmk_firmware/util/reset.py

8 lines
120 B
Python
Raw Normal View History

2018-09-25 18:23:24 -07:00
try:
import machine
machine.reset()
2018-09-25 18:13:51 -07:00
2018-09-25 18:23:24 -07:00
except ImportError:
import microcontroller
microcontroller.reset()