from machine import Pin,ADC
import utime
POT_value1=ADC(28)
POT_value2=ADC(27)
conversion_factor=3.3/(65536)
while True:
print("_________________")
print("POT_value1=",POT_value1.read_u16())
print("POT_value2=",POT_value2.read_u16())
utime.sleep(1)