Turn Any Android 7-16 Device into a BLE Smart Home Control Panel

has been fixed

1 Like

Hi, in landscape orientation front camera snapshot is rotated 90 degrees , it is always in portrait mode. I didn’t tested rear camera snapshots.

Also face recognition seems work worse in landscape.

1 Like

I just came across this. Looks interesting

Does anyone have any videos or screenshots of it in use. Particularly the floating windows and the doorbell feature

Amazing app!!

Need help on muting the built-in browser.
I’m displaying live go2rtc camera stream to the browser from HA:

      - action: text.set_value
        data:
          entity_id: "text.xxxxx_voice_assistant_remote_browser_url"
          value: "https://xxx.xxx.x.x:xxxx/stream.html?&src=driveway"

and mute the browser with browser command:

      - action: text.set_value
        data:
          entity_id: "text.xxxxx_voice_assistant_remote_browser_url"
          value: '{"volume": 0}'

Browser pops up full screen and streams correctly, but the sound from camera still plays in the browser, am I missing something?

tankyou

  • action: text.set_value
    data:
    entity_id: “text.xxxxx_voice_assistant_remote_browser_url”
    value: ‘{“eval”: “!function(){document.querySelectorAll("video,audio").forEach(m=>{m.muted=!0;m.volume=0;m.setAttribute("muted","")})}()”}’

Appreciate for the quick reply.
Unfortunately, that did not work for the go2rtc streams.
The camera elements will turn muted or unmuted just by turning the browser display switch in HA on and off without changing the url, very strange.

Will research more.
Thank you for you help.