import time
from machine import Pin, I2C, ADC
import math
temp_adc= ADC(26)
while True:
analogValue = temp_adc.read_u16()
print(analogValue)
time.sleep_ms(200)
import time
from machine import Pin, I2C, ADC
import math
temp_adc= ADC(26)
while True:
analogValue = temp_adc.read_u16()
print(analogValue)
time.sleep_ms(200)