from machine import ADC from time import sleep_ms a2d0 = ADC(0) a2d1 = ADC(1) while(1): x = a2d0.read_u16() >> 4 y = a2d1.read_u16() >> 4 print(x, y) sleep_ms(200)