Merge pull request #2754 from adafruit/BlitzCityDIY-patch-1

Update picowbell doubler CP example
This commit is contained in:
Anne Barela 2024-03-21 16:44:43 -04:00 committed by GitHub
commit 44a84c575b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -13,7 +13,7 @@ led.direction = Direction.OUTPUT
analog_in = AnalogIn(board.A3)
def get_vsys(pin):
return ((pin.value * 3) * 3.3) / 65536
return ((pin.value * 3) * 3.3) / 65535
while True:
led.value = True