-
Notifications
You must be signed in to change notification settings - Fork 7.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add two more Adafruit Boards (Sparkle Motion & Sparkle Motion mini) (#…
…10809) * add sparkle motion board (w/esp32 mini module) * add mini version!
- Loading branch information
Showing
3 changed files
with
352 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
#ifndef Pins_Arduino_h | ||
#define Pins_Arduino_h | ||
|
||
#include <stdint.h> | ||
#include "soc/soc_caps.h" | ||
|
||
// User LED | ||
static const uint8_t LED_BUILTIN = 4; | ||
#define BUILTIN_LED LED_BUILTIN // backward compatibility | ||
#define LED_BUILTIN LED_BUILTIN // allow testing #ifdef LED_BUILTIN | ||
|
||
// Neopixel | ||
static const uint8_t PIN_NEOPIXEL = 2; | ||
// RGB_BUILTIN and RGB_BRIGHTNESS can be used in new Arduino API rgbLedWrite() and digitalWrite() for blinking | ||
#define RGB_BUILTIN (PIN_NEOPIXEL + SOC_GPIO_PIN_COUNT) | ||
#define RGB_BRIGHTNESS 64 | ||
|
||
static const uint8_t TX = 9; | ||
static const uint8_t RX = 10; | ||
|
||
#define TX1 TX | ||
#define RX1 RX | ||
|
||
static const uint8_t SDA = 14; | ||
static const uint8_t SCL = 13; | ||
|
||
static const uint8_t SS = 23; | ||
static const uint8_t MOSI = 9; | ||
static const uint8_t MISO = 10; | ||
static const uint8_t SCK = 18; | ||
|
||
static const uint8_t A0 = 27; | ||
|
||
// internal switch | ||
static const uint8_t BUTTON = 0; | ||
|
||
static const uint8_t T0 = 27; | ||
|
||
static const uint8_t DAC1 = 25; | ||
static const uint8_t DAC2 = 26; | ||
|
||
#endif /* Pins_Arduino_h */ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
#ifndef Pins_Arduino_h | ||
#define Pins_Arduino_h | ||
|
||
#include <stdint.h> | ||
#include "soc/soc_caps.h" | ||
|
||
// User LED | ||
static const uint8_t LED_BUILTIN = 12; | ||
#define BUILTIN_LED LED_BUILTIN // backward compatibility | ||
#define LED_BUILTIN LED_BUILTIN // allow testing #ifdef LED_BUILTIN | ||
|
||
// Neopixel | ||
static const uint8_t PIN_NEOPIXEL = 18; | ||
// RGB_BUILTIN and RGB_BRIGHTNESS can be used in new Arduino API rgbLedWrite() and digitalWrite() for blinking | ||
#define RGB_BUILTIN (PIN_NEOPIXEL + SOC_GPIO_PIN_COUNT) | ||
#define RGB_BRIGHTNESS 64 | ||
|
||
static const uint8_t TX = 25; | ||
static const uint8_t RX = 26; | ||
|
||
#define TX1 TX | ||
#define RX1 RX | ||
|
||
static const uint8_t SDA = 19; | ||
static const uint8_t SCL = 22; | ||
|
||
static const uint8_t SS = 14; | ||
static const uint8_t MOSI = 25; | ||
static const uint8_t MISO = 26; | ||
static const uint8_t SCK = 27; | ||
|
||
static const uint8_t A0 = 13; | ||
|
||
// internal switch | ||
static const uint8_t BUTTON = 0; | ||
|
||
static const uint8_t T0 = 13; | ||
|
||
static const uint8_t DAC1 = 25; | ||
static const uint8_t DAC2 = 26; | ||
|
||
#endif /* Pins_Arduino_h */ |