12 lines
		
	
	
		
			319 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			319 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
| binary_sensor:
 | |
|   - platform: mqtt
 | |
|     name: "Puerta Tendedero"
 | |
|     value_template: >-
 | |
|       {% if value_json.RfReceived.Data == '0D7F0A' %}
 | |
|         {{'ON'}}
 | |
|       {% elif value_json.RfReceived.Data == '0D7F0E' %}
 | |
|         {{'OFF'}}
 | |
|       {% endif %}
 | |
|     device_class: opening
 | |
|     state_topic: "sonoffbridge/tele/RESULT"
 | 
