├── README.md ├── admin.yaml ├── bg_long.png ├── cameras.yaml ├── dashboard-400.png ├── dashboard.yaml ├── dashboard_sensors.yaml ├── fan.yaml ├── hvac.yaml ├── music.yaml ├── printer.yaml ├── security.yaml ├── tv_remotes.yaml ├── vacuum.yaml └── yt.png /README.md: -------------------------------------------------------------------------------- 1 | # homeassistant-dashboard 2 | __YAML configuration of my Home Assistant lovelace dashboard UI__ 3 | 4 | This repository includes the separate files that compose my dashboard. The main dashboard is dashboard.yaml which navigates to many sub-dashboards that contain distinct functionality. Also included is a file with yaml code for the sensors that are used in the masthead of the dashboard. 5 | 6 | __Some of the features that I'm most happy with and proud of__: 7 | 8 | * Masthead includes swiping left/right to quickly see the front door cam or the driveway in order to see whose car is blocking whom. 9 | 10 | * The camera view cycles through cameras surveillance-style (demo video is sped up during the camera view). 11 | 12 | * Universal TV remotes that control Roku enabled TV's and related DirecTV boxes. Family members have access to the remote for the family room TV and their own bedroom TV. 13 | 14 | * Certain lights (like bedroom lights) and buttons (such as the Admin view button) are only visible to appropriate family members. 15 | 16 | * Multi-room audio interface that broadcasts certain streaming services and local radio streams (using Mopidy). 17 | 18 |
19 |
20 |
22 | Video Demo 23 |
24 |
25 |
26 |
27 |
28 |
{{ 59 | states('sensor.dashboard_greeting') }}, {{ user 60 | }}Current Temperature: 61 | {{state_attr('weather.home','temperature') | 62 | round}}°F {% if is_state("sun.sun", 63 | "above_horizon") -%} 64 | Next Sunset: {{as_timestamp(strptime(state_attr("sun.sun", "next_setting"), '')) | timestamp_custom("%-I:%M %p")}} 65 | {%- else -%} 66 | Next Sunrise: {{as_timestamp(strptime(state_attr("sun.sun", "next_rising"), '')) | timestamp_custom("%-I:%M %p")}} 67 | {%- endif %}SmartHome Mode: {{ 68 | states('input_text.home_mode') }} 69 | Doors: {{ states('sensor.door_locks') 70 | }} Grocery Budget: ${{ 71 | states('sensor.grocery_budget_balance') }} 72 | | |
{{ 75 | states('sensor.dashboard_occupancy') 76 | }} |