Added SolarEdge data Sensors
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user