File tree Expand file tree Collapse file tree 4 files changed +17
-0
lines changed Expand file tree Collapse file tree 4 files changed +17
-0
lines changed Original file line number Diff line number Diff line change @@ -284,6 +284,7 @@ jobs:
284
284
[
285
285
" wippersnapper_feather_esp32" ,
286
286
" qtpy_esp32" ,
287
+ " sparklemotionmini_esp32" ,
287
288
" feather_esp32_v2" ,
288
289
" itsybitsy_esp32" ,
289
290
" wippersnapper_qtpy_esp32c3" ,
Original file line number Diff line number Diff line change @@ -323,6 +323,14 @@ board_build.filesystem = littlefs
323
323
build_type = debug
324
324
build_flags = -DARDUINO_ADAFRUIT_QTPY_ESP32
325
325
326
+ ; Adafruit Mini Sparkle Motion
327
+ [env:adafruit_sparklemotionmini_esp32]
328
+ extends = common:esp32
329
+ board = adafruit_sparklemotionmini_esp32
330
+ board_build.partitions = min_spiffs.csv
331
+ board_build.filesystem = littlefs
332
+ build_flags = -DARDUINO_SPARKLEMOTIONMINI_ESP32
333
+
326
334
; Adafruit QT Py ESP32-C3
327
335
[env:adafruit_qtpy_esp32c3]
328
336
extends = common:esp32
Original file line number Diff line number Diff line change 177
177
#define STATUS_NEOPIXEL_PIN PIN_NEOPIXEL
178
178
#define STATUS_NEOPIXEL_NUM 1
179
179
#define USE_PSRAM ///< Board has PSRAM, use it for dynamic memory allocation
180
+ #elif defined(ARDUINO_SPARKLEMOTIONMINI_ESP32 )
181
+ #define BOARD_ID "sparklemotionmini-esp32"
182
+ #define USE_LITTLEFS
183
+ #define USE_STATUS_NEOPIXEL
184
+ #define STATUS_NEOPIXEL_PIN PIN_NEOPIXEL
185
+ #define STATUS_NEOPIXEL_NUM 1
186
+ #define USE_PSRAM ///< Board has PSRAM, use it for dynamic memory allocation
180
187
#elif defined(ARDUINO_RASPBERRY_PI_PICO_W )
181
188
#define BOARD_ID "rpi-pico-w"
182
189
#define USE_TINYUSB
Original file line number Diff line number Diff line change 17
17
defined(ARDUINO_ADAFRUIT_ITSYBITSY_ESP32) || \
18
18
defined(ARDUINO_ADAFRUIT_FEATHER_ESP32_V2) || \
19
19
defined(ARDUINO_ADAFRUIT_QTPY_ESP32_PICO) || \
20
+ defined(ARDUINO_SPARKLEMOTIONMINI_ESP32) || \
20
21
defined(ARDUINO_ADAFRUIT_QTPY_ESP32C3) || \
21
22
defined(ARDUINO_ADAFRUIT_FEATHER_ESP32C6)
22
23
#include " WipperSnapper_LittleFS.h"
You can’t perform that action at this time.
0 commit comments