13 lines
		
	
	
		
			351 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			351 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
binary_sensor:
 | 
						|
  - platform: mqtt
 | 
						|
    name: "Movimiento Pasillo Habitaciones"
 | 
						|
    value_template: >-
 | 
						|
      {% if value_json.RfReceived.Data == '5D559C' %}
 | 
						|
        {{'ON'}}
 | 
						|
      {% elif value_json.RfReceived.Data == '5D5590' %}
 | 
						|
        {{'OFF'}}
 | 
						|
      {% endif %}
 | 
						|
    device_class: motion
 | 
						|
    state_topic: "sonoffbridge/tele/RESULT"
 | 
						|
    off_delay: 10
 |