This file contains hidden or 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
| { | |
| "openapi": "3.0.1", | |
| "info": { | |
| "title": "My API", | |
| "description": "Description of your API.", | |
| "termsOfService": "https://example.com/terms", | |
| "contact": { | |
| "name": "Example Contact", | |
| "url": "https://example.com/contact" | |
| }, |
This file contains hidden or 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
| Wochentag : | |
| {{ ['Montag','Dienstag','Mittwoch','Donnerstag','Freitag','Samstag','Sonntag'][now().weekday()] }} | |
| Monat : | |
| {{ ['Januar', 'Februar', 'März', 'April', 'Mai', 'Juni', 'Juli', 'August', 'September', 'Oktober', 'November', 'Dezember'][now().month-1] }} | |
| Monat Kurz : | |
| {{ ['Jan.', 'Feb.','März', 'Apr.','Mai', 'Jun.', 'Jul.', 'Aug.', 'Sept.', 'Okt.', 'Nov.', 'Dez.'][now().month-1] }} | |
| Datum : |
This file contains hidden or 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
| sensor: | |
| # Energy counter in Watt-minute | |
| - platform: mqtt | |
| name: "Energy 0" | |
| state_topic: "shellies/shellyem3-40F520011095/emeter/0/energy" | |
| qos: 1 | |
| value_template: "{{ (value|float / 1000) | round(1)}}" # Fix for Watt-minutes | |
| unit_of_measurement: "kWh" | |
| icon: mdi:chart-bar | |
| - platform: mqtt |
This file contains hidden or 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
| sensor: | |
| # Energy counter in Watt-minute | |
| - platform: mqtt | |
| name: "Energy 0" | |
| state_topic: "shellies/shellyem3-40F520011095/emeter/0/energy" | |
| qos: 1 | |
| value_template: "{{ value|float / 1000 }}" # Fix for Watt-minutes | |
| unit_of_measurement: "kWh" | |
| icon: mdi:chart-bar | |
| - platform: mqtt |
This file contains hidden or 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
| blueprint: | |
| name: Controll RGB Lamp from Octoprint | |
| description: Turn a light on by Octoprint | |
| domain: automation | |
| input: | |
| target_octoprint: | |
| name: Octoprint Printing | |
| description: This sensor will be synchronized with the light. | |
| selector: | |
| entity: |
This file contains hidden or 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
| blueprint: | |
| name: Philips Hue Dimmer Switch | |
| description: | | |
| Control lights with a Philips Hue Dimmer Switch. | |
| The top "on" button will turn the lights on to the last set brightness | |
| (unless the force brightness is toggled on in the blueprint). | |
| Dim up/down buttons will change the brightness smoothly and can be pressed | |
| and hold until the brightness is satisfactory. |
This file contains hidden or 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
| [] |