Files
esp32-core/variants/d32/pins_arduino.h
T
2026-05-22 21:52:50 +03:00

14 lines
367 B
C

#ifndef Pins_Arduino_h
#define Pins_Arduino_h
#include <stdint.h>
#include <d32_core.h>
static const uint8_t LED_BUILTIN = 5;
#define BUILTIN_LED LED_BUILTIN // backward compatibility
#define LED_BUILTIN LED_BUILTIN // allow testing #ifdef LED_BUILTIN
static const uint8_t _VBAT = 35; // battery voltage
#define BAT_VOLT_PIN _VBAT
#endif /* Pins_Arduino_h */