Skip to content

Commit

Permalink
Updates
Browse files Browse the repository at this point in the history
  • Loading branch information
aneisch committed Dec 7, 2023
1 parent 5a37163 commit 8e2654c
Show file tree
Hide file tree
Showing 6 changed files with 82 additions and 85 deletions.
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
[![Build Status](https://github.com/aneisch/home-assistant-config/actions/workflows/check-ha-release-compatibility.yml/badge.svg)](https://github.com/aneisch/home-assistant-config/actions)
[![GitHub last commit](https://img.shields.io/github/last-commit/aneisch/home-assistant-config)](https://github.com/aneisch/home-assistant-config/commits/master)
[![GitHub commit activity](https://img.shields.io/github/commit-activity/y/aneisch/home-assistant-config)](https://github.com/aneisch/home-assistant-config/graphs/commit-activity)
[![HA Version](https://img.shields.io/badge/Running%20Home%20Assistant-2023.11.3%20(Latest)-brightgreen)](https://github.com/home-assistant/home-assistant/releases/latest)
[![HA Version](https://img.shields.io/badge/Running%20Home%20Assistant-2023.12.0%20(Latest)-brightgreen)](https://github.com/home-assistant/home-assistant/releases/latest)
<br><a href="https://www.buymeacoffee.com/aneisch" target="_blank"><img src="https://cdn.buymeacoffee.com/buttons/default-black.png" width="150px" height="35px" alt="Buy Me A Coffee" style="height: 35px !important;width: 150px !important;" ></a>


Expand Down Expand Up @@ -57,7 +57,7 @@ Description | value
-- | --
Lines of ESPHome YAML | 2774
Lines of Home Assistant YAML | 8452
[Integrations](https://www.home-assistant.io/integrations/) in use | 51
[Integrations](https://www.home-assistant.io/integrations/) in use | 52
Zigbee devices in [`zha`](https://www.home-assistant.io/integrations/zha/) | 26
Z-Wave devices in [`zwave_js`](https://www.home-assistant.io/integrations/zwave_js/) | 37

Expand Down Expand Up @@ -89,18 +89,18 @@ Entities in the [`plant`](https://www.home-assistant.io/components/plant) domain
Entities in the [`remote`](https://www.home-assistant.io/components/remote) domain | 1
Entities in the [`scene`](https://www.home-assistant.io/components/scene) domain | 2
Entities in the [`script`](https://www.home-assistant.io/components/script) domain | 42
Entities in the [`select`](https://www.home-assistant.io/components/select) domain | 2
Entities in the [`sensor`](https://www.home-assistant.io/components/sensor) domain | 395
Entities in the [`select`](https://www.home-assistant.io/components/select) domain | 3
Entities in the [`sensor`](https://www.home-assistant.io/components/sensor) domain | 392
Entities in the [`siren`](https://www.home-assistant.io/components/siren) domain | 1
Entities in the [`sun`](https://www.home-assistant.io/components/sun) domain | 1
Entities in the [`switch`](https://www.home-assistant.io/components/switch) domain | 163
Entities in the [`switch`](https://www.home-assistant.io/components/switch) domain | 162
Entities in the [`timer`](https://www.home-assistant.io/components/timer) domain | 2
Entities in the [`tts`](https://www.home-assistant.io/components/tts) domain | 1
Entities in the [`update`](https://www.home-assistant.io/components/update) domain | 3
Entities in the [`vacuum`](https://www.home-assistant.io/components/vacuum) domain | 1
Entities in the [`weather`](https://www.home-assistant.io/components/weather) domain | 2
Entities in the [`zone`](https://www.home-assistant.io/components/zone) domain | 6
**Total state objects** | **1157**
**Total state objects** | **1154**
## The HACS integrations/plugins that I use:
**Appdaemon**:<br>
[aneisch/follow_me_appdaemon](https://github.com/aneisch/follow_me_appdaemon)<br>
Expand Down
2 changes: 1 addition & 1 deletion extras/appdaemon/apps/apps.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ Christmas Lights:
class: Timer
entities: switch.christmas_lights # This is roofline, ground auto follows via link in esphome for device
time_on: sunset - 00:20:00
time_off: "23:30:00"
time_off: "23:00:00"

Christmas Trees Follow:
module: follow_me
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
const LitElement = Object.getPrototypeOf(customElements.get("ha-panel-lovelace"));
const LitElement = customElements.get('home-assistant-main') ? Object.getPrototypeOf(customElements.get('home-assistant-main')) : Object.getPrototypeOf(customElements.get('hui-view'));
const html = LitElement.prototype.html;
const css = LitElement.prototype.css;

class TextInputRow extends LitElement {

static get properties() {
Expand Down Expand Up @@ -30,8 +31,9 @@ class TextInputRow extends LitElement {

render() {
return html`
<paper-input
<ha-textfield
label="${this.label}"
style="width: 100%"
value="${this.value}"
minlength="${this.minlength}"
maxlength="${this.maxlength}"
Expand All @@ -41,7 +43,7 @@ class TextInputRow extends LitElement {
@change="${this.valueChanged}"
id="textinput"
placeholder=""
></paper-input>
></ha-textfield>
`;
}

Expand Down
Binary file not shown.
Loading

0 comments on commit 8e2654c

Please sign in to comment.