0

寻找编码大师来解释我现在需要采取的方向:

我使用当前连接到我的 Raspberry Pi 的 Amazon Echo Dot。我现在可以说“Alexa 打开/关闭设备”,它使用这个优秀的存储库向我的 Raspberry Pi 返回真/假:https ://github.com/toddmedema/echo 。

谁能解释我如何用发送请求以使用 RDP 在我的 Windows 计算机上执行批处理文件的脚本替换这个 python 脚本中的这个“真”?我认为它在这里,但它不起作用:

def act(self, client_address, state, name):
    print "State", state, "from client @", client_address
    GPIO.setmode(GPIO.BOARD) ## Use board pin numbering
    GPIO.setup(str(sys.argv[3]), GPIO.OUT)   ## Setup GPIO Pin to OUTPUT
    GPIO.output(str(sys.argv[3]), not state) ## State is true/false
    GPIO.cleanup(str(sys.argv[3]))
    return True ## after this line add the command the execute?

额外问题:如何添加更多语音命令?

真的很感激。

4

0 回答 0