mirror of
				https://github.com/esphome/esphome.git
				synced 2025-10-30 22:53:59 +00:00 
			
		
		
		
	Fix remote_receiver binary_sensor (#592)
Fixes https://github.com/esphome/issues/issues/369
This commit is contained in:
		| @@ -293,7 +293,7 @@ template<typename T, typename D> class RemoteReceiverBinarySensor : public Remot | ||||
|   bool matches(RemoteReceiveData src) override { | ||||
|     auto proto = T(); | ||||
|     auto res = proto.decode(src); | ||||
|     return res.has_value(); | ||||
|     return res.has_value() && *res == this->data_; | ||||
|   } | ||||
|  | ||||
|  public: | ||||
|   | ||||
		Reference in New Issue
	
	Block a user