mirror of
				https://github.com/0xFEEDC0DE64/arduino-esp32.git
				synced 2025-10-30 21:51:40 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			36 lines
		
	
	
		
			957 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			36 lines
		
	
	
		
			957 B
		
	
	
	
		
			C
		
	
	
	
	
	
| #ifndef Pins_Arduino_h
 | |
| #define Pins_Arduino_h
 | |
| 
 | |
| #include <stdint.h>
 | |
| 
 | |
| #define EXTERNAL_NUM_INTERRUPTS 22
 | |
| #define NUM_DIGITAL_PINS        22
 | |
| #define NUM_ANALOG_INPUTS       6
 | |
| 
 | |
| #define analogInputToDigitalPin(p)  (((p)<NUM_ANALOG_INPUTS)?(analogChannelToDigitalPin(p)):-1)
 | |
| #define digitalPinToInterrupt(p)    (((p)<NUM_DIGITAL_PINS)?(p):-1)
 | |
| #define digitalPinHasPWM(p)         (p < EXTERNAL_NUM_INTERRUPTS)
 | |
| 
 | |
| static const uint8_t LED_BUILTIN = 7;
 | |
| #define BUILTIN_LED  LED_BUILTIN // backward compatibility
 | |
| 
 | |
| static const uint8_t TX = 21;
 | |
| static const uint8_t RX = 20;
 | |
| 
 | |
| static const uint8_t SDA = 8;
 | |
| static const uint8_t SCL = 10;
 | |
| 
 | |
| static const uint8_t SS    = 5;
 | |
| static const uint8_t MOSI  = 4;
 | |
| static const uint8_t MISO  = 3;
 | |
| static const uint8_t SCK   = 2;
 | |
| 
 | |
| static const uint8_t A0 = 0;
 | |
| static const uint8_t A1 = 1;
 | |
| static const uint8_t A2 = 2;
 | |
| static const uint8_t A3 = 3;
 | |
| static const uint8_t A4 = 4;
 | |
| static const uint8_t A5 = 5;
 | |
| 
 | |
| #endif /* Pins_Arduino_h */
 |