13 lines
		
	
	
		
			346 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			346 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
binary_sensor:
 | 
						|
  - platform: mqtt
 | 
						|
    name: "Movimiento Habitación Mia"
 | 
						|
    value_template: >-
 | 
						|
      {% if value_json.RfReceived.Data == 'CBD19C' %}
 | 
						|
        {{'ON'}}
 | 
						|
      {% elif value_json.RfReceived.Data == 'CBD190' %}
 | 
						|
        {{'OFF'}}
 | 
						|
      {% endif %}
 | 
						|
    device_class: motion
 | 
						|
    state_topic: "sonoffbridge/tele/RESULT"
 | 
						|
    off_delay: 10
 |