* Add Config * Add Cache and remove pre-commit action * [pre-commit.ci lite] apply automatic fixes * Remove freeze * Fix * Update action * Use latest stable Python 3 version * Improve caching * Improve cache tag * Improve bot message * fix(typos): Fix typos * fix(typos): Fix more typos * refactor(udp_server): Convert script from Python 2 to 3 * Fix whitespace * Clang-format fixes * Prettier fixes * Black formatting * Manual fixes * Line endings * Fix flake and make Vale manual * Fix flake and reformat --------- Co-authored-by: pre-commit-ci-lite[bot] <117423508+pre-commit-ci-lite[bot]@users.noreply.github.com> Co-authored-by: Rodrigo Garcia <rodrigo.garcia@espressif.com>
44 lines
1,014 B
C
44 lines
1,014 B
C
#ifndef Pins_Arduino_h
|
|
#define Pins_Arduino_h
|
|
|
|
#include <stdint.h>
|
|
|
|
#define USB_VID 0x303a
|
|
#define USB_PID 0x1001
|
|
|
|
// No USER LED or NeoLED
|
|
|
|
static const uint8_t TX = 45;
|
|
static const uint8_t RX = 44;
|
|
|
|
static const uint8_t SDA = 4;
|
|
static const uint8_t SCL = 5;
|
|
|
|
static const uint8_t SS = 46;
|
|
static const uint8_t MOSI = 3;
|
|
static const uint8_t MISO = 20;
|
|
static const uint8_t SCK = 19;
|
|
|
|
static const uint8_t A0 = 7;
|
|
static const uint8_t A1 = 6;
|
|
static const uint8_t A2 = 2;
|
|
static const uint8_t A3 = 1;
|
|
static const uint8_t A4 = 4;
|
|
static const uint8_t A5 = 5;
|
|
|
|
static const uint8_t D0 = 44;
|
|
static const uint8_t D1 = 45;
|
|
static const uint8_t D2 = 42;
|
|
static const uint8_t D3 = 41;
|
|
static const uint8_t D4 = 0;
|
|
static const uint8_t D5 = 45;
|
|
static const uint8_t D6 = 48;
|
|
static const uint8_t D7 = 47;
|
|
static const uint8_t D8 = 21;
|
|
static const uint8_t D9 = 14;
|
|
static const uint8_t D10 = 46;
|
|
static const uint8_t D11 = 3;
|
|
static const uint8_t D12 = 20;
|
|
static const uint8_t D13 = 19;
|
|
|
|
#endif /* Pins_Arduino_h */
|