Cameteo/circuitpython/boot.py

17 lines
489 B
Python

# Selectively setting readonly to False on boot
import board
import digitalio
import storage
switch = digitalio.DigitalInOut(board.D5)
switch.direction = digitalio.Direction.INPUT
switch.pull = digitalio.Pull.UP
led = digitalio.DigitalInOut(board.D13)
led.direction = digitalio.Direction.OUTPUT
# If the D0 is connected to ground with a wire
# CircuitPython can write to the drive
storage.remount("/", switch.value)
print("Readonly : {}".format(switch.value))
led.value = switch.value