我正在尝试使用物理按钮链接tkinter按钮,而不是单击它。将我的按钮同时连接到gpio和接地引脚。似乎无法正常工作,请尝试使用此invoke方法。需要帮助,即时消息对编码还是很新的。只有几分之一的经验。使用python
GPIO.setmode(GPIO.BCM)
GPIO.setup(27,GPIO.IN,pull_up_down=GPIO.PUD_UP)
GPIO.add_event_detect(27, GPIO.BOTH,bouncetime=1)
button1=tk.Button(text="PASS!",font=('Times New Roman',25),bg='pink', command=lambda:[response_display(),point(),timer()])
button1.grid(column=0, row=2)
if GPIO.event_detected(27):
print('Button pressed')
button1.invoke()