DD - Automatic area-based dashboard for desktop, tablet and mobile - V3.7.0

Also, is it possible to have more than one certain type of entity in each room? I have 2 media players that I want to place in my Living Room config file, but when I do, only one shows up. Same for Switches / Devices.

Also, Humidity does not show at all.

1 Like

I loved the new update. I was so excited that I can seonsors. as a motion and door sensor in the configuration. It does not crash now after the update, but it does not update state either.

 rooms:
   - name: Living Room
     icon: fas:couch
     light: group.living_room_lights
     temperature: sensor.broadlink_sensor_temperature_2
     humidity: sensor.broadlink_sensor_humidity
     motion: sensor.living_room_motion
     door: sensor.broadlink_s1c_side
#     window: binary_sensor.hallway_window_contact
     media_player: group.media_livingroom

My sensor config:

- platform: template
  sensors:
      living_room_motion:
        friendly_name: "Living Room Motion"
        value_template: >-
          {% if is_state('input_boolean.living_room_motion', 'on') %}
            motion detected
          {% else %}
            no motion
          {% endif %}

  living_room_motion:
    name: Living room motion input
    initial: off
    icon: mdi:walk

Automation.yaml


  alias: Living room motion
  trigger:
  - entity_id: binary_sensor.living_room_motion
    from: 'off'
    platform: state
    to: 'on'
  condition: []
  action:
  - data:
      entity_id: input_boolean.living_room_motion
    service: input_boolean.turn_on
  - delay: 00:05
  - data:
      entity_id: input_boolean.living_room_motion
    service: input_boolean.turn_off
  initial_state: true

The reason for such this is the sensors is attached to a basic sonoff device and only update the state when it’s active and I wanted it to last for 5 minutes.

My guess is that the theme code does not recognise my motion sensor state name and does not update?

I have the same issue with motion and door sensors on custom component Broadlink S1C.

Any help is appreciated.

1 Like

Make it so that your sensors has the states on/off or True/False then it works. Also why don’t you directly use binary_sensor.living_room_motion ?

Not sure what you are doing without any config. But for the multiple devices in 1 room use group. It’s inside the theme documentation all explained.

Also why don’t you directly use binary_sensor.living_room_motion ?
Because the the state only updates when the sensor is ‘on’ and it changes state very fast. I wanted the state to remain updated for 5 minutes.

Can I modify your code to include states like motion_detected and ‘open’ 'closed?

What file should I look into? :sweat_smile:

1 Like

It can, but then again every update will override al your changes. Also you need to change like 6 or 7 files on many places. I would recommend you to change your states as said to True or False or On/Off in your sensor config (value) template. It’s then the same as a normal door/motion would work so its also better for HA itself. And you don’t have to change any of my theme core files.

Thank you very much.

1 Like

Sorry 2e misunderstood each other. Controlling the vacuum with start and stop works and also the map is showing correctly but zoned cleaning won’t work due to send command template issues I think

1 Like

Yeah this only works when you root your vacuum. Otherwise you can only use the control buttons (start, stop etc).

I was having issues getting my rooms icons to show up, when I realized that it’s the motion sensor that is causing the issue. For my kitchen motion, I actually have two motion sensors. I have some logic built in that feeds an input_boolean which I use as my “Kitchen motion sensor”. Is there any way you could allow input_booleans as motion sensors in a future update?

1 Like

I can make it, but an input_boolean is not intended as a sensor to be honest. You can convert your input_boolean into a binary_sensor or sensor using a template. I personally recommend you to do that instead Template - Home Assistant

1 Like

I think we. Don’t understand each bother. Again …my. Robiitt. Is rooted with valetudo. … zoned cleaning doesn’t work

1 Like

Aah now we understand each other haha :slight_smile: Yeah zoned cleanup still doesn’t work, need to fix that yes. I use that card for it but it doesn’t have the right coordinates, will be fixed soon.

Allo right sir ,:muscle::crossed_fingers::love_you_gesture::grin:

1 Like

Also oto draag and droop the zones (the red rectangle tables) can’t be moved somehow

1 Like

I know, I will set it on the list to be changed soon :slight_smile:

I’m also working hard on 1.2.1 with some small bug fixes .

Package dwains_theme_configuration setup failed. Component frontend has duplicate key 'primary-font-family'

Not sure what’s going on here?

1 Like

Let the master code and release new release before bothering …in sure he’s aware of some bugs and working on it

2 Likes

I need a little help, I’ve installed the theme. But if I want to change (toggle) light following error is coming up: service browser_mod/popup not found. I#ve installed it via HACS. What can I do?

1 Like

This error is not caused by my theme. I think you didn’t followed the setup right or have some conflicting things installed.