Testing functions

main
Gerardo Marx 1 month ago
parent 3885c796e3
commit d7868df8cd

@ -1,12 +1,15 @@
#!/usr/bin/python3
import sys
GPIOPATH = "/sys/class/gpio/"
fo = open(GPIOPATH + "gpio60/direction", "w")
fo.write("out")
fo.close()
GPIO60 = "/sys/class/gpio/gpio60/"
fo = open(GPIOPATH + "gpio60/value", "w")
fo.write("1")
fo.close()
def writeVal(path, direction, value):
fop = open(path + "direction", "w")
fop.write(direction)
fop.close()
fov = open(path + "value", "w")
fov.write(value)
fov.close()
return
writeVal(GPIO60, "out", "1")

Loading…
Cancel
Save