我正在将RPi Sense Hat与Pi 3 B +(运行最新的Raspbian Stretch)一起使用。感官帽的每个部分(LED,IMU,温度传感器)均有效,除了操纵杆。我正在从下面的内容中使用Python API:https://pythonhosted.org/sense-hat/
我正在直接从API运行代码:
from sense_hat import SenseHat
from time import sleep
sense = SenseHat()
event = sense.stick.wait_for_event()
print("The joystick was {} {}".format(event.action, event.direction))
程序的执行挂在wait_for_event方法上,根本不响应操纵杆。键盘也不起作用(我理解箭头键也应该触发操纵杆事件)。仅从IDE中终止进程会停止执行。
我已经更新/升级了Pi,并删除并重新安装了sense-hat
模块。