10 lines
122 B
Python
10 lines
122 B
Python
try:
|
|
import machine
|
|
|
|
machine.reset()
|
|
|
|
except ImportError:
|
|
import microcontroller
|
|
|
|
microcontroller.reset()
|