-
I just built MicroPython for the XIAO BLE nrf52840 Sense board using Zephyr. I am able to turn GPIO pins on and off. from machine import Pin
p = Pin(('gpio0', 26), Pin.OUT, value=0) # red LED should go ON
p.value() # 0
p.value(1) # red LED goes OFF
p.value() # 0 Am I doing something wrong here, or should I open an issue? |
Beta Was this translation helpful? Give feedback.
Answered by
bikeNomad
Jul 1, 2025
Replies: 1 comment
-
Opened issue #17596 |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
bikeNomad
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Opened issue #17596