Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- motyle_oswietlenie:
- alias: Motyle - Oświetlenie
- mode: parallel
- fields:
- start:
- name: Początek
- description: Czas rozpoczęcia ściemniania/rozjaśniania (czas dla którego ma być 100/0%)
- required: true
- example: "17:30"
- default: "17:30"
- selector:
- time:
- end:
- name: Koniec
- description: Czas zakończenia ściemniania/rozjaśniania (czas dla którego ma być 0/100%)
- required: true
- example: "19:10"
- default: "19:10"
- selector:
- time:
- light:
- name: Światło
- description: Światło do sterowania
- required: true
- example: light.motyle_oswietlenie
- default: light.motyle_oswietlenie
- selector:
- entity:
- domain: light
- mode:
- name: Tryb
- description: Tryb działania skryptu
- required: true
- example: darken
- default: darken
- selector:
- select:
- options:
- - label: Przyciemnianie
- value: darken
- - label: Rozjaśnianie
- value: lighten
- months:
- name: Miesiące
- description: Miesiące w których ma działać skrypt
- required: true
- example: "[1, 2, 3, 4, 9, 10, 11, 12]"
- default: "[1, 2, 3, 4, 9, 10, 11, 12]"
- selector:
- select:
- multiple: true
- mode: list
- options:
- - label: Styczeń
- value: "1"
- - label: Luty
- value: "2"
- - label: Marzec
- value: "3"
- - label: Kwiecień
- value: "4"
- - label: Maj
- value: "5"
- - label: Czerwiec
- value: "6"
- - label: Lipiec
- value: "7"
- - label: Sierpień
- value: "8"
- - label: Wrzesień
- value: "9"
- - label: Październik
- value: "10"
- - label: Listopad
- value: "11"
- - label: Grudzień
- value: "12"
- sequence:
- - variables:
- start_int: "{{ start.split(':')[0] | int * 60 + start.split(':')[1] | int }}"
- end_int: "{{ end.split(':')[0] | int * 60 + end.split(':')[1] | int }}"
- time_int: "{{ now().hour * 60 + now().minute }}"
- start_value: "{{ (mode != 'darken') | iif(0, 100) }}"
- end_value: "{{ (mode != 'darken') | iif(100, 0) }}"
- current_value: "{{ start_value + ((time_int - start_int) / (end_int - start_int)) * (end_value - start_value) }}"
- - if:
- - condition: template
- value_template: "{{ start_int <= time_int <= end_int }}"
- - condition: template
- value_template: "{{ now().month | string in months }}"
- then:
- - service: light.turn_on
- data:
- transition: 5
- brightness_pct: "{{ min(max(current_value | float, 0), 100) }}"
- kelvin: 6500
- target:
- entity_id: "{{ light }}"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement