我正在使用此继电器srd-05vdc-sl-c
的泵将水泵连接到我的树莓派3B +上,但泵不会起作用...
我正在使用这张地图图片
https://www.raspberrypi-spy.co.uk/wp-content/uploads/2012/06/Raspberry-Pi-GPIO-Layout-Model-B-Plus-rotated-2700x900.png
我将VCC
连接到5V(4号),GND
接地(6号),并将IN
连接到GPIO18(12号),它应该可以工作,但是开关已打开并且不会关闭18、12或其他任何数字。...有人可以帮助我吗? Python代码在这里
import RPi.GPIO as GPIO # Import required Python libraries
import time
GPIO.setwarnings(False)
GPIO.setmode(GPIO.BCM) # even BOARD doesnt work
GPIO.setup(12,GPIO.OUT)
from Tkinter import*
myGui=Tk()
while True:
def onlamp():
GPIO.output(12,True)
def offlamp():
GPIO.output(12,False)
myGui.title("Hello")
myGui.geometry("200x350+200+200")
while True:
myButton1=Button(text='on',fg='black',bg='green',command=onlamp).pack()
myButton2=Button(text='off',fg='black',bg='green',command=offlamp).pack()
myGui.mainloop()