我有一个绑定到 IOT Foundation (iotf) 服务的 Node-RED 应用程序。我可以从设备接收事件并适当地处理它们。
但是,我现在有兴趣将命令发送回我的设备并且遇到了一些问题。设备上没有显示任何内容,但通过在节点中创建 IOTF,我可以确认该命令正在通过 iotf。
我绝对可以使用纯 python 获取通过 iotf 的命令,因为以下代码运行良好:
客户端代码:
#!/usr/bin/python
import ibmiotf.device
from time import sleep
options = {
"org": "cgmncc",
"type": "table",
"id": "b827eb764b7a",
"auth-method": "token",
"auth-token": "redacted"
}
def myCommandCallback(cmd):
print('inside command callback')
print cmd
def main():
client = ibmiotf.device.Client(options)
client.connect()
client.commandCallback = myCommandCallback
while True:
sleep(1)
if __name__ == "__main__":
main()
申请代码:
#!/usr/bin/python
import ibmiotf.application
options = {
"org": "redacted",
"id": "python app",
"auth-method": "apikey",
"auth-key": "redacted",
"auth-token": "redacted"
}
try:
client = ibmiotf.application.Client(options)
client.connect()
client.publishCommand('table', 'b827eb764b7a', 'test')
client.disconnect()
except ibmiotf.ConnectionException as e:
print e
每当我运行应用程序代码时,我都会看到以下输出:
root@raspberrypi ~ # ./app.py
inside command callback
<ibmiotf.device.Command instance at 0x14e8490>
我有一个如下所示配置的 Node-RED iotf 输出节点,但是当我触发流时,命令回调函数不会触发!
我认为尝试使用时间戳触发器来触发命令或我配置输出节点本身的方式可能有问题 - 任何建议或建议将不胜感激!