Skip to content

Commit

Permalink
cat feeder, gas buddy, automation, govee
Browse files Browse the repository at this point in the history
- Add cat feeder total
- Add notificaiton when near empty
- Add gas price
- Fix collection message when offset
- Disable office lights on in the morning
- Replace Govee with Govee to MQTT
  • Loading branch information
zanix committed Feb 2, 2024
1 parent b917d59 commit 3b2dc11
Show file tree
Hide file tree
Showing 4 changed files with 48 additions and 11 deletions.
19 changes: 10 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ If you want to back up your own Home Assistant configuration to GitHub, follow [

## Software

<details><summary>8 Add-ons</summary>
<details><summary>9 Add-ons</summary>

- Mosquitto broker
- ESPHome
Expand All @@ -22,6 +22,7 @@ If you want to back up your own Home Assistant configuration to GitHub, follow [
- UniFi Network Application
- Zigbee2MQTT
- Z-Wave JS UI
- Govee to MQTT Bridge

---

Expand Down Expand Up @@ -297,7 +298,12 @@ Frigate integration for Home Assistant

Authors: [@blakeblackshear](https://github.com/blakeblackshear).

### [Ge Home (Smarthq)](https://github.com/simbaja/ha_gehome) [v0.6.9-de6]
### [Gasbuddy](https://github.com/firstof9/ha-gasbuddy) [v1.0.6]

Component to integrate with GasBuddy fuel price tracker.

Authors: [@firstof9](https://github.com/firstof9).


GE Home Appliances (SmartHQ) for Home Assistant

Expand All @@ -309,12 +315,6 @@ Use Jinja and data from Home Assistant to generate your README.md file

Authors: [@ludeeus](https://github.com/ludeeus).

### [Govee](https://github.com/LaggAt/hacs-govee) [v2023.11.1]

A HACS repository for Govee light integration

Authors: [@LaggAt](https://github.com/LaggAt).

### [Home Assistant Community Store (HACS)](https://github.com/hacs/integration) [v1.34.0]

HACS gives you a powerful UI to handle downloads of all your custom needs.
Expand Down Expand Up @@ -597,7 +597,7 @@ Minimalistic uptime card for Home Assistant Lovelace UI

> For more details, see the [automations.xml][automations] file and `automation:` blocks in [integrations].
<details><summary>147 Automations</summary>
<details><summary>148 Automations</summary>

- ⏯ Ensure PiPup is Running
- ⏯ Family Room Media Auto Off
Expand Down Expand Up @@ -650,6 +650,7 @@ Minimalistic uptime card for Home Assistant Lovelace UI
- 🎄 XMas Tree On/Off (Disabled)
- 🏢 Office Day Mode
- 🏢 Office Night Mode
- 🐱 Cat Feeder Notification
- 💡 All Lights off when Away
- 💡 Dim Front Lights at Night
- 💡 Front Lights off at Sunrise
Expand Down
25 changes: 23 additions & 2 deletions automations.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -1881,8 +1881,8 @@
icon: '{{ state_attr("calendar." ~ object_id, "icon") }}'
icon_color: '#{{ iif(type == ''recycle'', ''4caf50'', ''745246'') }}'
icon_url: '{{ icon | replace("mdi:", "") }}'
description: '{% if trigger.calendar_event.description != "" %} ({{ trigger.calendar_event.description
}}){%- endif -%}'
description: "{% if trigger.calendar_event.description != \"\" %}\n {{ \" \"
}}({{ trigger.calendar_event.description }})\n{%- endif -%}"
- choose:
- conditions:
- condition: trigger
Expand Down Expand Up @@ -1988,6 +1988,7 @@
data: {}
target:
area_id: office
enabled: false
- service: switch.turn_on
data:
entity_id: switch.erebus
Expand Down Expand Up @@ -4761,3 +4762,23 @@
milliseconds: 0
mode: single
max_exceeded: silent
- id: '1706291631355'
alias: "\U0001F431 Cat Feeder Notification"
description: ''
trigger:
- platform: numeric_state
entity_id:
- sensor.cat_feeder_total_weight
above: 1440
condition: []
action:
- service: script.notify_mobile
metadata: {}
data:
who: parents
title: Cat Feeder Empty
message: The Cat feeder is nearly empty
notification_icon: mdi:paw
color: '#FF9800'
icon_url: local/icons/paw.png
mode: single
15 changes: 15 additions & 0 deletions ui-lovelace.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6412,6 +6412,21 @@ views:
layout: vertical
name: Odometer
type: custom:mushroom-entity-card
- card_mod:
style:
.: "ha-card {\n /* Remove default card styling */\n --ha-card-background:\
\ none;\n --ha-card-box-shadow: none;\n --ha-card-border-width: 0;\n\
\n /* Center card on row */\n width: fit-content;\n margin: auto;\n\
}\n"
entity: sensor.maverik_regular_gas
icon: mdi:gas-station
icon_color: amber
layout: vertical
primary: Gas Price
secondary: ${{ states(entity) }}/gal
tap_action:
action: more-info
type: custom:mushroom-template-card
type: horizontal-stack
- cards:
- entity: select.ascent_climate_preset
Expand Down
Binary file added www/icons/paw.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 3b2dc11

Please sign in to comment.