0
I’m starting with a project with my rpi 3 that concise in using engines connected to the rpi3 gpio pins!
In my code there is some error connected in the mode of the pins, but I do not know how to solve, SOMEONE COULD GIVE A LITTLE HELP?
import RPi.GPIO as gpio
def up():
gpio.setmode(gpio.BCM)
gpio.output(7,False)
gpio.output(11,True)
gpio.output(13,False)
gpio.output(15,True)
up()
gpio.cleanup()
Do not put the error as image, copy and paste here in the editor.
– Woss