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