# Analog sensor data
# Reading and showing the value of a potentiometer
from machine import Pin, ADC
from time import sleep
potentiometer=ADC(Pin(27)) #Use pin GP27 for analog input
# Note: to read a value of the potentiometer through the ADC,
# you can use potentiometer.read_u16()
while True:
#Add code here to repeat in this loop