13 lines
		
	
	
		
			367 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			367 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
| binary_sensor:
 | |
|   - platform: mqtt
 | |
|     name: "Movimiento Habitación Estudio"
 | |
|     value_template: >-
 | |
|       {% if value_json.RfReceived.Data == '2A00BC' %}
 | |
|         {{'ON'}}
 | |
|       {% else %}
 | |
|         {{states('binary_sensor.movimiento_habitacion_estudio') | upper}}
 | |
|       {% endif %}
 | |
|     device_class: motion
 | |
|     state_topic: "sonoffbridge/tele/RESULT"
 | |
|     off_delay: 10
 | 
