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
esphome: | |
name: multisensor-kitchen | |
on_boot: | |
priority: -100 | |
then: | |
- light.turn_on: light_internal | |
- lvgl.page.show: page_blank | |
- delay: 1s | |
- light.turn_off: light_internal |
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
/** | |
* GDPR cookie helper for Google Tag Manager | |
* Helper uses default dataLayer as GTM array | |
* @param name - name of cookie | |
* @param options - all possible options for cookies, used in addAll | |
* @constructor | |
*/ | |
function GdprCookie (name, options) { | |
this.name = name; | |
this.variables = []; |