SecKatie / wyzeapy

36 stars 26 forks source link

Question: Filter in get_event_list() #6

Closed faanskit closed 3 years ago

faanskit commented 3 years ago

Question: When the Wyze app query for events from a camera with ./get_event_list, it asks for "all" events: "event_value_list": [],

Wyzeapy sends a filter, that likely makes the app omit sound detections. Is this on purpose?

            "event_value_list": [
                "1",
                "13",
                "10",
                "12"
            ],

By adding "2" to this list, also sound events gets published to Home Assistant:

            "event_value_list": [
                "1",
                "2",
                "13",
                "10",
                "12"
            ],

Do you have documentation what 1, 13, 10 and 12 means? 1 = Camera Motion 2 = Sound Detection 10 - ? 12 - ? 13 - ?