● 스위치 카운트 전등 스위치 on off 갯수 확인하기
♨ 카랜더 일정 :
2024년10월17일
본문
● 스위치 카운트 전등 스위치 on off 갯수 확인하기
,,, 그룹으로 구성 진행
https://cafe.naver.com/homestation/73
1) 그룹 구성
climate_group:
name: Group climate
entities:
- climate.485_ttl_esp32_ip109_livingroom_boier
- climate.485_ttl_esp32_ip109_bigroom_boier
- climate.485_ttl_esp32_ip109_smallroom_boier
- climate.485_ttl_esp32_ip109_bookroom_boier
all_switch_group:
name: Group switch all
entities:
- switch.sonoff_100173eaad
- switch.sonoff_1001739bad
- switch.ew11_living_room_light_1
----------------- 구성후 재부팅 -------------
구성요소에서 counts_all_switch_light_on_group 을 조회 합니다
sensor.all_switch_light_on_group 을 센서로 활용 합니다
2) 센서 구성
/config/configuration.yaml 에 구성
template:
- sensor:
- name: counts_all_switch_light_on_group
unique_id: all_switch_light_on_group
state: "{{ expand(states.group.all_switch_group) | selectattr('state', 'eq', 'on') | list | count }}"
unit_of_measurement: "개"
- name: counts_all_switch_light_off_group
unique_id: all_switch_light_off_group
state: "{{ expand(states.group.all_switch_group) | selectattr('state', 'eq', 'off') | list | count }}"
unit_of_measurement:
"개"
===========================
뷰PDF 1,2
office view
관련자료
-
링크
-
이전
-
다음
댓글목록
등록된 댓글이 없습니다.