2018-07-28 09:27:26 +02:00
|
|
|
#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
|
2020-11-10 19:50:35 +01:00
|
|
|
#define LED_BUILTIN LED_BUILTIN
|
2018-07-28 09:27:26 +02:00
|
|
|
static const uint8_t _VBAT = 35; // battery voltage
|
|
|
|
|
|
|
|
#endif /* Pins_Arduino_h */
|