* Heltec ESP32 Series boards update * Update variants/heltec_capsule_sensor_v3/pins_arduino.h Co-authored-by: Jan Procházka <90197375+P-R-O-C-H-Y@users.noreply.github.com> * Update variants/heltec_capsule_sensor_v3/pins_arduino.h Co-authored-by: Jan Procházka <90197375+P-R-O-C-H-Y@users.noreply.github.com> * Update variants/heltec_ht_de01/pins_arduino.h Co-authored-by: Jan Procházka <90197375+P-R-O-C-H-Y@users.noreply.github.com> * Update variants/heltec_wireless_mini_shell/pins_arduino.h Co-authored-by: Jan Procházka <90197375+P-R-O-C-H-Y@users.noreply.github.com> * Update variants/heltec_wireless_mini_shell/pins_arduino.h Co-authored-by: Jan Procházka <90197375+P-R-O-C-H-Y@users.noreply.github.com> * Fix board definition format * Update Wireless Stick Lite V3 pin defintion * Update Heltec boards defintion * Heltec Wireless Shell (V3) format update * Heltec Capsule Sensor V3 information update * Heltec E-Ink Driver board menu update * Heltec E-Ink Driver board menu update --------- Co-authored-by: Jan Procházka <90197375+P-R-O-C-H-Y@users.noreply.github.com>
34 lines
790 B
C
34 lines
790 B
C
#ifndef Pins_Arduino_h
|
|
#define Pins_Arduino_h
|
|
|
|
#include <stdint.h>
|
|
#include "soc/soc_caps.h"
|
|
|
|
#define WIRELESS_MINI_SHELL true
|
|
|
|
static const uint8_t LED_BUILTIN = SOC_GPIO_PIN_COUNT+8;
|
|
#define BUILTIN_LED LED_BUILTIN // backward compatibility
|
|
#define LED_BUILTIN LED_BUILTIN
|
|
#define RGB_BUILTIN LED_BUILTIN
|
|
#define RGB_BRIGHTNESS 64
|
|
|
|
|
|
static const uint8_t TX = 21;
|
|
static const uint8_t RX = 20;
|
|
|
|
static const uint8_t SDA = 8;
|
|
static const uint8_t SCL = 9;
|
|
|
|
static const uint8_t SS = 7;
|
|
static const uint8_t MOSI = 6;
|
|
static const uint8_t MISO = 5;
|
|
static const uint8_t SCK = 4;
|
|
|
|
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 */
|