* 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>
47 lines
1.4 KiB
C
47 lines
1.4 KiB
C
#ifndef Pins_Arduino_h
|
|
#define Pins_Arduino_h
|
|
|
|
#include <stdint.h>
|
|
|
|
static const uint8_t TX = 1;
|
|
static const uint8_t RX = 3;
|
|
|
|
// IO
|
|
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 SW1 = 4;
|
|
static const uint8_t SW2 = 18;
|
|
static const uint8_t SW3 = 19;
|
|
static const uint8_t SW4 = 21;
|
|
|
|
//I2S DAC
|
|
static const uint8_t I2S_MCLK = 2; // CLOCK must be an integer multiplier of SCLK
|
|
static const uint8_t I2S_LRCLK = 25; // LRCLK
|
|
static const uint8_t I2S_SCLK = 26; // SCLK - Fs (44100 Hz)
|
|
static const uint8_t I2S_DOUT = 22; // DATA
|
|
|
|
//GPIO
|
|
static const uint8_t D0 = 34; // GPI - Input Only
|
|
static const uint8_t D1 = 35; // GPI - Input Only
|
|
static const uint8_t D2 = 32; // GPO - Output Only
|
|
static const uint8_t D3 = 33; // GPO - Output Only
|
|
static const uint8_t D4 = 27;
|
|
static const uint8_t D5 = 14;
|
|
static const uint8_t D6 = 12;
|
|
static const uint8_t D7 = 13;
|
|
static const uint8_t D8 = 15;
|
|
static const uint8_t D9 = 23;
|
|
static const uint8_t D10 = 0;
|
|
|
|
// I2C BUS, 2k2 hardware pull-ups
|
|
static const uint8_t SDA = 16;
|
|
static const uint8_t SCL = 17;
|
|
|
|
// SPI - unused but you can create your own definition in your sketch
|
|
static const int8_t SCK = -1;
|
|
static const int8_t MISO = -1;
|
|
static const int8_t MOSI = -1;
|
|
static const int8_t SS = -1;
|
|
|
|
#endif /* Pins_Arduino_h */
|