Thanks, that did it… missed that setting somehow…
Add the repo as custom addon in hacs then you can install it. Its more HACS related then DD related
Anybody know if it’s possible?
Yes you can create an own more page add it in the main menu and disable default camera page.
Sweet. Thanks
so I’m bamboozled, the web rtc cards are actually from a custom component integration, not just a card. it shows as cards not configured in DD. is there a way to get a custom component card to show in DD?
You can add any card as custom card like default in HA like for any other dashboard then DD will load it automatic too.
Thanks Dwain, sorted👌🏼
Glad it worked
Hello
i ad the auto_informatie more page addon
but i can’t get it to work
this line
{{ (data | fromjson)[‘car_1_image’] }}
always get the error
while parsing a flow mapping in “/config/dwains-dashboard/addons/more_page/auto_informatie/page.yaml”, line 16, column 17 expected ‘,’ or ‘}’, but got ‘[’ in “/config/dwains-dashboard/addons/more_page/auto_informatie/page.yaml”, line 16, column 36
this is my config for it
- name: Auto Informatie
icon: fas:car-alt
path: ‘dwains-dashboard/addons/more_page/auto_informatie/page.yaml’
data:
car_1_entity: kia_niro
car_1_image: ‘/local/images/no_car.png’
car_1_font_collor: 0,0,0
car_2_entity: kia_pikanto
car_2_image: ‘/local/images/no_car.png’
car_2_font_collor: 255,255,255
Nico
Hello… This looks awesome, but for some reason its not starting off right for me. Everything seem to install okay, but when I click on the Dwains Dashboard, I get “Custom element doesn’t exist: dwains-wrapper-card.” Did I miss a step somewhere? Thanks in advance.
You need to clear your browser cache (for example ctrl + f5)
Seems like your data is invalid in the config. can you format it?
Simple as that… Thanks
Hello, when looking at the dashboard from my mobile device, on the home page, its white… I pretty sure it worked before but not sure what changed. Any idea of what I might have did to cause this? I tried clearing cache on the device but that didn’t help.
I have some cameras in the WebRTC integration. They work fine when I create a page in the more_page folder for each camera and put it in a room.
But I also want a page with all cameras showing. But they show up vertically. I then tried to put them into a grid but it doesnt work. No errors but none of the camera windows show up. Anybody know why?My code:
I’m at a bit of a loss on this one. On a fresh install of 2.0.3, I seem to have installed everything correctly but the “Rooms” section is empty.
My rooms.yaml contains:
rooms:
- name: Downstairs Hallway
icon: mdi:key
device: switch.humidifier
- name: Garage
icon: mdi:garage
light: group.garage_lights
door: cover.garage_cover
lock: lock.garage_door_lock
The garage locks and lights appear in the “Devices” section but nothing in the “Rooms” section.
The only error I see in the logs is:
homeassistant | 2021-11-08 16:29:57 ERROR (MainThread) [frontend.js.latest.202111030] http://bolt.hxlabs.com:8123/dwains_dashboard/js/dwains-dashboard.js:90:11177 Uncaught TypeError: Cannot read properties of null (reading 'getAttribute')
TIA!
Can you try a minimal rooms.yaml like this:
rooms:
- name: Garage
icon: mdi:garage
light: group.garage_lights
Also are you editing the rooms.yaml in the right folder? not in the custom_components folder but root HA folder.
I edited the rooms.yaml file in /home/homeassistant/.homeassistant/dwains-dashboard/configs. The HA install is a container.
The file now contains just:
rooms:
- name: Garage
icon: mdi:garage
light: group.garage_lights
I restarted the server and now have the garage appearing under Rooms with just the lights. I re-added the lock back and that appeared in the garage under Rooms after restarting the server.
Finally after re-adding the cover, the garage disappears from under Rooms.
Also I tried using the Dwains Dashboard yaml reloading option but it didn’t seem to work. Only restarting the whole server caused the change to happen.
EDIT: Fixed my own problem, I was using door: instead of cover: in rooms.yaml for the garage cover.