11 lines
175 B
Python
11 lines
175 B
Python
import machine
|
|
import time
|
|
|
|
while True:
|
|
if machine.bootsel_button():
|
|
print("BOOTSEL button pressed!")
|
|
else:
|
|
print("Not pressed.")
|
|
time.sleep(0.2)
|
|
|