UBISS2024exam
Jump to navigation
Jump to search
1 from machine import Pin, ADC
2 from time import sleep
3
4 y = ADC(Pin(26))
5
6 while True:
7 z = y.read_u16()
8 print(z)
9 sleep(1)