mirror of
				https://github.com/esphome/esphome.git
				synced 2025-10-30 22:53:59 +00:00 
			
		
		
		
	Fix GPIO expression issue with no inverted set
This commit is contained in:
		| @@ -424,7 +424,7 @@ def exp_gpio_pin_(obj, conf, default_mode): | ||||
|             raise ESPHomeYAMLError(u"Unknown default mode {}".format(default_mode)) | ||||
|  | ||||
|     if conf.get(CONF_INVERTED) is None: | ||||
|         return obj(conf[CONF_NUMBER], conf.get(CONF_MODE)) | ||||
|         return obj(conf[CONF_NUMBER], RawExpression(conf.get(CONF_MODE, default_mode))) | ||||
|     return obj(conf[CONF_NUMBER], RawExpression(conf.get(CONF_MODE, default_mode)), | ||||
|                conf[CONF_INVERTED]) | ||||
|  | ||||
|   | ||||
		Reference in New Issue
	
	Block a user