mirror of
				https://github.com/esphome/esphome.git
				synced 2025-10-31 15:12:06 +00:00 
			
		
		
		
	Fix gpio pin mode for ISR pins (#4216)
This commit is contained in:
		| @@ -128,7 +128,7 @@ void IRAM_ATTR ISRInternalGPIOPin::pin_mode(gpio::Flags flags) { | ||||
|   auto *arg = reinterpret_cast<ISRPinArg *>(arg_); | ||||
|   gpio_set_direction(arg->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