>>> from machine import Pin
>>> gpio = Pin(Pin.GPIO15, Pin.OUT, Pin.PULL_DISABLE, 0)
>>> gpio.write(1)
0
>>> gpio.read()
1