from machine import Pin, ADC
from time import sleep
pot1 = ADC(Pin(26))
pot2 = ADC(Pin(27))
while True:
Thawfeek= pot1.read_u16()
print(Thawfeek)
Mohamed= pot2.read_u16()
print(Mohamed)
sleep(0.1)from machine import Pin, ADC
from time import sleep
pot1 = ADC(Pin(26))
pot2 = ADC(Pin(27))
while True:
Thawfeek= pot1.read_u16()
print(Thawfeek)
Mohamed= pot2.read_u16()
print(Mohamed)
sleep(0.1)