home-assistant / core

:house_with_garden: Open source home automation that puts local control and privacy first.
https://www.home-assistant.io
Apache License 2.0
69.74k stars 28.91k forks source link

Abode Cam 2 at idle #98367

Open thomasjomelnine7 opened 10 months ago

thomasjomelnine7 commented 10 months ago

The problem

I cannot view or get streams from my abode cam2 working in HA all other entities including door sensors, occupancy, and key fobs and keypads for abode security are working fine w/ arming and disarming the system working properly. The cameras are stated as idle.

What version of Home Assistant Core has the issue?

core-2023.6.3

What was the last working version of Home Assistant Core?

core-2023.6.3

What type of installation are you running?

Home Assistant Container

Integration causing the issue

Abode

Link to integration documentation on our website

https://www.home-assistant.io/integrations/abode

Diagnostics information

n/a

Example YAML snippet

n/a

Anything in the logs that might be useful for us?

n/a

Additional information

n/a

home-assistant[bot] commented 10 months ago

Hey there @shred86, mind taking a look at this issue as it has been labeled with an integration (abode) you are listed as a code owner for? Thanks!

Code owner commands Code owners of `abode` can trigger bot actions by commenting: - `@home-assistant close` Closes the issue. - `@home-assistant rename Awesome new title` Renames the issue. - `@home-assistant reopen` Reopen the issue. - `@home-assistant unassign abode` Removes the current integration label and assignees on the issue, add the integration domain after the command.

(message by CodeOwnersMention)


abode documentation abode source (message by IssueLinks)

tmahlstrom commented 8 months ago

Bump, same issue here

jaimeburnap commented 6 months ago

Having the same issue also

Core 2023.12.3 Supervisor 2023.12.0 Operating System 11.2 Frontend 20231208.2

cheezmo commented 3 months ago

I am having the same issue.

sam011989 commented 2 months ago

Same issues. All cameras are "idle" not not transmitting any data.

NeckBeardPrince commented 2 months ago

Not that it seems to matter, but same issue here. Just started using HA, big disappointment.

jaraco commented 1 month ago

Support for Abode Cam 2 was added to the backing library in jaraco.abode 0.6.0.

I have gone through the jaraco.abode code and confirmed that it does indeed properly talk to camera devices and shows them as online and I'm able to pull images from them.

``` jaraco.abode main @ pipx run --spec 'jaraco.abode>=5.2' abode --devices --interact 2024-05-13 16:40:28 INFO (MainThread) [jaraco.abode.client] Updating all devices... 2024-05-13 16:40:29 INFO (MainThread) [jaraco.abode.client] Login successful ... 2024-05-13 16:40:29 INFO (MainThread) [jaraco.abode.cli] Front Porch (ID: XF:b0c5ca318038, UUID: d19d0cf03b881208a8f6c6594fead48c) - Abode Cam 2 - Online ... Interact with the Abode `client`. >>> cam = client.get_device('XF:b0c5ca318038') >>> cam.is_on True >>> cam._state['privacy'] '0' >>> cam.privacy_mode(True) 2024-05-13 16:41:56 INFO (MainThread) [jaraco.abode.devices.camera] Set camera XF:b0c5ca318038 privacy mode to: 1 True >>> cam.privacy_mode(False) 2024-05-13 16:42:00 INFO (MainThread) [jaraco.abode.devices.camera] Set camera XF:b0c5ca318038 privacy mode to: 0 True >>> cam.snapshot() True >>> cam.snapshot_data_url(False)[:30] 'data:image/jpeg;base64,/9j/4AA' ```

I'm unfamiliar with how HA interfaces with component modules. I'll inspect that next.

jaraco commented 1 month ago

I read through the camera module and I don't see anything out of order there.

Does anyone experiencing this issue have access to troubleshooting logs? See the troubleshooting guide for advice on how get the logs and how to enable debugging.

It's also possible that an issue was resolved between the 3.3.0 release of jaraco.abode (what's currently in HA) and the 5.1.2 release, so it may be worth waiting for the next release of HA following the merge of https://github.com/home-assistant/core/pull/117363 to see if that happens to solve any issues (though I give that a slim chance).