Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- sensor:
- - platform: rest
- name: "Pergola"
- scan_interval: 15
- resource: http://192.168.1.100/pergola/zns.cgi?cmd=d&p=os
- json_attributes_path: "$.root"
- value_template: "OK"
- json_attributes:
- - "gpo6" # white dimmer
- - "s_elev" # Elevation
- - "s_azi" # Azimut
- - "s_prj" # Projection
- - "user" # mode (pluie, hiver, suivi,
- - "Mot0" # Moteur
- - "date" # Moteur
- - "sun_delay" # Actualisation
- - "VDC2" # Voltage VDC2
- - platform: rest
- name: "Pergola Core"
- scan_interval: 15
- resource: http://192.168.1.100/pergola/zns.cgi?cmd=c
- json_attributes_path: "$.root"
- value_template: "OK"
- json_attributes:
- - "orient" # orientation
- - "lon" # Longitude
- - "lat" # Latitude
- - platform: template
- sensors:
- pergola_watt:
- value_template: "{{ (((states.sensor.pergola.attributes['gpo6'].split(';')[1] | float(0) ) * (states.sensor.pergola.attributes['VDC2'] | float(0) / 1000)) / 1000) | round(2, default=0) }}"
- device_class: power
- unit_of_measurement: 'W'
- friendly_name: "Pergola lumière Watt"
- pergola_dimmer:
- value_template: "{{ (((states.sensor.pergola.attributes['gpo6'].split(';')[0]| float(0) ) * 100)/255) | round(0, default=0) }}"
- device_class: power_factor
- unit_of_measurement: '%'
- friendly_name: "Pergola lumière pourcentage"
- pergola_motor:
- value_template: "{{ (((states.sensor.pergola.attributes['Mot0'].split(';')[0]| float(0) ) * 100)/(states.sensor.pergola.attributes['Mot0'].split(';')[1]| float(0) )) | float(0) }}"
- device_class: power_factor
- unit_of_measurement: '%'
- friendly_name: "Pergola lames"
- pergola_sundelay:
- value_template: "{{ (states.sensor.pergola.attributes['sun_delay']| float(0) ) }}"
- friendly_name: "Pergola actualisation"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement