25 lines
		
	
	
		
			666 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
		
			666 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
| switch:
 | |
|   - platform: rest
 | |
|     name: "General Luces"
 | |
|     scan_interval: 30
 | |
|     resource: http://10.10.1.153/relay/0
 | |
|     body_on: 'turn=on'
 | |
|     body_off: 'turn=off'
 | |
|     timeout: 60
 | |
|     is_on_template: '{{ value_json.ison == true}}'
 | |
|     headers:
 | |
|        content-type: application/x-www-form-urlencoded
 | |
| 
 | |
| sensor:
 | |
|   - platform: mqtt
 | |
|     name: "Consumo General Luces"
 | |
|     state_topic: "shellies/shelly4pro-061E6E/relay/0/power"
 | |
|     unit_of_measurement: "W"
 | |
| 
 | |
|   - platform: mqtt
 | |
|     name: "Energia General Luces"
 | |
|     state_topic: "shellies/shelly4pro-061E6E/relay/0/energy"
 | |
|     unit_of_measurement: "KWh"
 | |
|     value_template: "{{ value | multiply(0.01) | float | round(2)}}"
 | |
| 
 | 
