bugfix: output misconfigured

This commit is contained in:
soypat
2025-07-09 12:13:17 -03:00
parent 9fb57e22fb
commit db544f4ca7
2 changed files with 4 additions and 1 deletions
+1 -1
View File
@@ -5,7 +5,7 @@ package legacy
import "machine"
func configurePinOut(p PinOutput) {
configurePin(p, machine.PinInputPulldown)
configurePin(p, machine.PinOutput)
}
func configurePinInputPulldown(p PinInput) {