Update amcrest2mqtt.py
JSON structure seems to have changed in latest firmware. Updated the row 426 to use right json path for human detection.
This commit is contained in:
@@ -423,7 +423,7 @@ async def main():
|
||||
if (is_ad110 and code == "ProfileAlarmTransmit") or (code == "VideoMotion" and not is_ad110):
|
||||
motion_payload = "on" if payload["action"] == "Start" else "off"
|
||||
mqtt_publish(topics["motion"], motion_payload)
|
||||
elif code == "CrossRegionDetection" and payload["data"]["ObjectType"] == "Human":
|
||||
elif code == "CrossRegionDetection" and payload["data"]["Object"]["ObjectType"] == "Human":
|
||||
human_payload = "on" if payload["action"] == "Start" else "off"
|
||||
mqtt_publish(topics["human"], human_payload)
|
||||
elif code == "_DoTalkAction_":
|
||||
|
||||
Reference in New Issue
Block a user