mirror of
				https://github.com/esphome/esphome.git
				synced 2025-10-30 06:33:51 +00:00 
			
		
		
		
	Fix ESP32 GPIO when using INPUT PULLUP mode (#4213)
This commit is contained in:
		| @@ -95,7 +95,7 @@ void ESP32InternalGPIOPin::pin_mode(gpio::Flags flags) { | ||||
|   // can't call gpio_config here because that logs in esp-idf which may cause issues | ||||
|   gpio_set_direction(pin_, flags_to_mode(flags)); | ||||
|   gpio_pull_mode_t pull_mode = GPIO_FLOATING; | ||||
|   if (flags & (gpio::FLAG_PULLUP | gpio::FLAG_PULLDOWN)) { | ||||
|   if ((flags & gpio::FLAG_PULLUP) && (flags & gpio::FLAG_PULLDOWN)) { | ||||
|     pull_mode = GPIO_PULLUP_PULLDOWN; | ||||
|   } else if (flags & gpio::FLAG_PULLUP) { | ||||
|     pull_mode = GPIO_PULLUP_ONLY; | ||||
|   | ||||
		Reference in New Issue
	
	Block a user