updating analog in

updating value for analog_in
This commit is contained in:
BlitzCityDIY 2022-06-15 11:31:37 -04:00
parent bec5991713
commit 9815721fbf

View file

@ -9,7 +9,7 @@ analog_pin = analogio.AnalogIn(board.A0)
def get_voltage(pin):
return (pin.value * 3.53) / 61285
return (pin.value * 3.09) / 61285
while True: