Hey all,
Does this work in panel view? I have tried every possible combination with custom button and calling a script but with no luckā¦ Any ideas?
Hey all,
Does this work in panel view? I have tried every possible combination with custom button and calling a script but with no luckā¦ Any ideas?
@thmry I use custom:auto-entities
to populate the info for my popups and I just exclude:
the devices I do not wish to see. Been working flawless for quite awhile.
@Eddie1974 Yes, almost all of my views are in panel:
layout.
Itās not really that I want to hide devices (e.g. the ones created by Browser Mod) I do not wish to see. Itās the fact that Browser Mod changes the behaviour of group.all_lights
. I use that group.
So, if I turn off all of my actual lights, group.all_lights
will still be on, since thereās still a light.<device_id_of_browser>
(created by Browser Mod) which is always on because Home Assistant is shown in it. This basically makes group.all_lights
useless for me.
So, I would love to be able to disable the creation of the light
created by Browser Mod (the others as well, but this one first and foremost).
Hey Dino,
Hope you shed some light on this. How do you show live camera view with a button press using a popup with CSS modifications?
I am planning to have different buttons for different cameras.
One could argue that the group.all_
family is pretty much useless anyway and their use is discouragedā¦
But thatās beside the point - and they do have their uses.
The option to disable entity creation is on my todo-list.
Sure. There are several different methods located in my repo: HERE. However, I canāt reach my wall mount when I am watching TV on the sofa, so I have a voice activated screen,(via Google Assistant), that pops up my camera feeds instead, on my Windows based tablet running Chrome: demo HERE. The original way I used, before browser-commander
and way before hass-browser-mod
, was a simple button press tap_action
that navigated to a full screen panel:
camera view and a navigate button back. Hope that helpsā¦I am always in Discord if you need any assistance or further code.
Will you share a code you use to exclude those devices created by browser_mod? Me too donāt want to see those sensors, lights and media_player.
Thanks in advanceā¦
The devices will still show up on your states page, but to exclude entities from cards and popups, I use THIS.
Hi!
Is it possible to change the width of the popup window? for example, double.
With ālarge: falseā option is too small, and with ālarge: trueā option the size is too big
Thanks for your help!
New feature!
Entities can now be disabled. Either per device or globally.
Not released in HACS yet, but can be installed if you select the master
version.
Thank you, it works great!
With this new feature group.all_lights
now only holds my actual lights, fixing my automations. Great!
Alsoā¦ I did not know you had Browser Mod on HACS. It isnāt mentioned in the readme as far as I can see, so because of your comment I now also installed it through HACS. I like it.
on the home assistant companion app (onto my ipad tablet) the app crashes / closes when i try to call the service browser_mod.debug.
Iām not sure if I can clear the cache overthere but i completely uninstalled and reinstalled the program and it is still not working.
the plugin is working fine on other devices
Anyone an idea?
Kind regards,
Stijn
I canāt reproduce this problem on the Beta 2.0 version of the app.
Do you get an error in your log?
In the beta app, thereās a button at the bottom of the settings page to Reset Frontend Cache. I canāt remember if thereās anything like it in v. 1.5ā¦
Thanks Dino, finally got it to work.
Oh, wow. How did I miss that? I was looking for a header HACS or something .
Hi Thomas,
Iāve had a major update from the companion app and after going to the initial setup (first time the new companion app has launched) the problems seems to be resolved
kind regards,
Stijn
Hi @thomasloven
I have multiple displays with different resolution so I have made several āHome dashboardsā specific to every device and Iām hiding the other home tabs which are not needed to that device. On other tabs like āHeatingā (which are the same to all devices) Iāve placed a āHomeā button with a browser_mod.navigate service to navigate to the Home tab specific to that device.
Example:
tap_action:
action: call-service
service: browser_mod.navigate
service_data:
navigation_path: /lovelace/1
deviceID:
- 6asf58ff-a5554f8c
Is it possible to have multiple navigation_path for every device. To be more clear: if deviceID = 6asf58ff-a5554f8c go to /lovelace/1, if deviceID = jhgjhgjhg-hgjhgjhg go to /lovelace/2 and so on.
Thank you