本站改版新增arduino频道
from machine import Pin, ADC from time import sleep pot = ADC(Pin(00)) pot.atten(ADC.ATTN_11DB) #Full range: 3.3v while True: pot_value = pot.read() value = round(((pot_value * 3.31) / 4095) * 5, 2) print(value) sleep(0.1)
Copyright © 2014 ESP56.com All Rights Reserved
晋ICP备14006235号-22 晋公网安备14108102001165号
执行时间: 0.0096158981323242 seconds