SecKatie / ha-wyzeapi

Home Assistant Integration for Wyze devices.
733 stars 112 forks source link

Request ability to control garage door switch attached to Wyze Cam 3 #520

Closed jpetersheim closed 7 months ago

jpetersheim commented 10 months ago

I'd love to see the ability to control the garage door opener. It comes packaged with a Wyze Cam V3 (Model: WYZE_CAKP2JFUS). This set up is very similar to the Wyze Floodlight attached to a WYZE_CAKP2JFUS.

Nuances: There is a QR code on your garage door that signifies to the camera that the door is closed. I found that the garage door command is just a trigger (https://github.com/mrlt8/docker-wyze-bridge/issues/997#issue-1897139928) If it is closed (QR detected), the door opens. If it is open, the door closes.

Alternatives: I've looked at Docker Wyze Bridge and they don't have this capability either (https://github.com/mrlt8/docker-wyze-bridge)

I am happy to share my device on a call if anyone wants to work on developing this.

image

github-actions[bot] commented 9 months ago

This issue is stale because it has been open 30 days with no activity. Remove stale label or comment or this will be closed in 5 days.

Lukejb14 commented 9 months ago

This issue may now be more critical.

With the MyQ integration discontinued, this may be super helpful for the millions of people with MyQ garage doors.

mikealanni commented 8 months ago

I'm planning to buy wyze garbage door, if this can be integrated in buying it tomorrow

mikealanni commented 8 months ago

Endpoint for garage status can be getting from https://api.wyzecam.com/app/v2/device/get_property_list

It will return P1056, if 1 then garage open, 0 or 2 close. I think 0 when run by rule, 2 when run of an endpoint https://api.wyzecam.com/app/v2/auto/run_action With action "action_key": "garage_door_trigger"

I really would this be integrated as its a neat feature.

github-actions[bot] commented 7 months ago

This issue is stale because it has been open 30 days with no activity. Remove stale label or comment or this will be closed in 5 days.

github-actions[bot] commented 7 months ago

This issue was closed because it has been stalled for 5 days with no activity.

delikat commented 6 months ago

starting to look into this as I have a couple garage door accessories I'd love to use in HA.

homebridge-wyze-smart-home seems to have a working implementation, though they're looking at P1301 for garage door state. triggering the opener is done by running the garage_door_trigger action as @mikealanni mentioned.

e: door state is a little flaky in their implementation, sounds like P1049 and P1056 are worth looking at as well

mikealanni commented 6 months ago

@delikat

I have this setup in my home assistant and it's working with some automated geo tracking

`command_line:

delikat commented 6 months ago

@mikealanni awesome, thanks for sharing! I'm a little confused since P1056 is also used for floodlight status. Maybe it just represents generic accessory on/off state? I'll poke around the API a bit.

mikealanni commented 6 months ago

I'm not expert but I was monitoring the app and saw that P1056 changed when door open and close so I use it 😅