Compare commits

...

3 Commits

Author SHA1 Message Date
38d92d8eea HA_VERSION in .gitignore 2025-04-28 22:43:12 +02:00
ea9df812d0 Button Action changes 2025-04-28 22:42:17 +02:00
1297cc5e1c Added SolarEdge data Sensors 2025-04-28 22:41:00 +02:00
3 changed files with 39 additions and 2 deletions

3
.gitignore vendored
View File

@@ -9,4 +9,5 @@ dwains-dashboard/*
.storage/core.restore_state
.storage/repairs.issue_registry
home-assistant.log*
zigbee2mqtt
zigbee2mqtt
.HA_VERSION

View File

@@ -45,7 +45,7 @@ actions:
- 255
- 0
- 0
brightness_pct: 100
brightness_pct: "{{ states('input_number.confort_light_pct') }}"
transition: 10
target: !input light_target

View File

@@ -87,6 +87,42 @@ mqtt:
state_topic: monitoring/et/values
value_template: >-
{{ (value.split(',')[7] | int) / 10 }}
- name: SE_AC_voltage
unit_of_measurement: "V"
unique_id: mon_se_ac_voltage
state_topic: monitoring/se/values
value_template: >-
{{ (value_json.ac_v | int) / 100 }}
- name: SE_AC_current
unit_of_measurement: "A"
unique_id: mon_se_ac_current
state_topic: monitoring/se/values
value_template: >-
{{ (value_json.ac_i | int) / 100 }}
- name: SE_DC_voltage
unit_of_measurement: "V"
unique_id: mon_se_dc_voltage
state_topic: monitoring/se/values
value_template: >-
{{ (value_json.dc_v | int) / 100 }}
- name: SE_DC_current
unit_of_measurement: "A"
unique_id: mon_se_dc_current
state_topic: monitoring/se/values
value_template: >-
{{ (value_json.dc_i | int) / 100 }}
- name: SE_Heatsink_temp
unit_of_measurement: "'C"
unique_id: mon_se_ht_temperature
state_topic: monitoring/se/values
value_template: >-
{{ (value_json.hs_t | int) / 100 }}
- name: SE_Total_power
unit_of_measurement: "MW"
unique_id: mon_se_tot_p
state_topic: monitoring/se/values
value_template: >-
{{ (value_json.w_tot | int) / 1000000 }}
- name: Zigbee2mqtt Networkmap
unique_id: zigbee2mqtt_bridge_network_map
# if you change base_topic of Zigbee2mqtt, change state_topic accordingly