This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Manging Rhasspy calls for the climate entity | |
# A climate entity controls temperature, humidity, or fans, such as A/C systems and humidifiers. | |
# --> https://developers.home-assistant.io/docs/core/entity/climate/ | |
automation: | |
#Changing the Temperature | |
- alias: Rhasspy Set Temperature | |
description: Set new target temperature | |
trigger: | |
- event_data: {} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Manging Rhasspy calls for the switch entity | |
# A switch entity turns on or off something, for example a relay. | |
# --> https://developers.home-assistant.io/docs/core/entity/switch | |
automation: | |
#Turn On | |
- alias: Rhasspy Turn on | |
description: Turn on the switch | |
trigger: | |
- event_data: {} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { fireEvent, HomeAssistant, LovelaceCardEditor } from 'custom-card-helpers'; | |
import { css, CSSResult, html, internalProperty, LitElement, property, TemplateResult } from 'lit-element'; | |
import { guard } from 'lit-html/directives/guard'; | |
import Sortable, { AutoScroll, OnSpill, SortableEvent } from 'sortablejs/modular/sortable.core.esm'; | |
interface EREConfig { | |
wonderfullsetting?: string; | |
} | |
/** | |
* Entities Row Editor |