我正在尝试从DynamoDB中的数据点亮连接到设备的LED。问题是我可以连接并向该主题发出订阅请求,但没有收到任何数据。
// Code works
// I have given only the part of code from lambda function
// It fetches data from DB
import json
import boto3
def get_multiple_items():
return table.scan()
def lambda_handler(event, context):
# TODO implement
return {
'statusCode': 200,
'payload': json.dumps(get_multiple_items()),
'event':event
}
// Code from Device
def customCallback(client, userdata, message):
print("Received a new message: ")
print(message.payload)
print("from topic: ")
print(message.topic)
print("--------------\n\n")
print("Subscribing Data")
// It is not calling the customCallback function
myClient.subscribe(topic,1,customCallback)
print("Subscribed Data")
答案 0 :(得分:0)
伙计们,我有发布数据的解决方案,但是遇到了另一个问题,发布方法仅发布到另一个主题,但是我希望它发布到设备上。
答案 1 :(得分:0)
建议在调用.subscribe(..)之后包含time.sleep(0.005)或一些短延迟。
您可以在此处共享控制台日志输出,以更好地了解您的问题吗?
欢呼声,
公羊