mirror of
				https://github.com/esphome/esphome.git
				synced 2025-10-30 22:53:59 +00:00 
			
		
		
		
	Deep Sleep capable ports for ESP32S3 (#4230)
Update to provide RTC capable ports for ESP32S3. Fresh from [espressif gpio docs](https://docs.espressif.com/projects/esp-idf/en/latest/esp32s3/api-reference/peripherals/gpio.html)
This commit is contained in:
		
				
					committed by
					
						 GitHub
						GitHub
					
				
			
			
				
	
			
			
			
						parent
						
							a0d04ba091
						
					
				
				
					commit
					8b5b9e508b
				
			| @@ -21,6 +21,7 @@ from esphome.components.esp32.const import ( | |||||||
|     VARIANT_ESP32, |     VARIANT_ESP32, | ||||||
|     VARIANT_ESP32C3, |     VARIANT_ESP32C3, | ||||||
|     VARIANT_ESP32S2, |     VARIANT_ESP32S2, | ||||||
|  |     VARIANT_ESP32S3, | ||||||
| ) | ) | ||||||
|  |  | ||||||
| WAKEUP_PINS = { | WAKEUP_PINS = { | ||||||
| @@ -69,6 +70,30 @@ WAKEUP_PINS = { | |||||||
|         20, |         20, | ||||||
|         21, |         21, | ||||||
|     ], |     ], | ||||||
|  |     VARIANT_ESP32S3: [ | ||||||
|  |         0, | ||||||
|  |         1, | ||||||
|  |         2, | ||||||
|  |         3, | ||||||
|  |         4, | ||||||
|  |         5, | ||||||
|  |         6, | ||||||
|  |         7, | ||||||
|  |         8, | ||||||
|  |         9, | ||||||
|  |         10, | ||||||
|  |         11, | ||||||
|  |         12, | ||||||
|  |         13, | ||||||
|  |         14, | ||||||
|  |         15, | ||||||
|  |         16, | ||||||
|  |         17, | ||||||
|  |         18, | ||||||
|  |         19, | ||||||
|  |         20, | ||||||
|  |         21, | ||||||
|  |     ], | ||||||
| } | } | ||||||
|  |  | ||||||
|  |  | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user