Skip to content

Commit

Permalink
Merge pull request #256 from julio-matarranz/feat/support-s3-mini
Browse files Browse the repository at this point in the history
feat : support s3 mini devices
  • Loading branch information
BitMaker-hub authored Dec 8, 2023
2 parents dcf2683 + 82471f8 commit 6d29381
Show file tree
Hide file tree
Showing 4 changed files with 86 additions and 1 deletion.
63 changes: 62 additions & 1 deletion platformio.ini
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,69 @@

[platformio]
globallib_dir = lib
default_envs = esp32cam, ESP32-2432S028R, NerminerV2, ESP32-devKitv1, NerminerV2-S3-DONGLE, NerminerV2-S3-AMOLED, NerminerV2-T-QT, NerdminerV2-T-Display_V1, ESP32-2432S028R, M5-StampS3, ESP32-S3-devKitv1
default_envs = esp32cam, ESP32-2432S028R, NerminerV2, ESP32-devKitv1, NerminerV2-S3-DONGLE, NerminerV2-S3-AMOLED, NerminerV2-T-QT, NerdminerV2-T-Display_V1, ESP32-2432S028R, M5-StampS3, ESP32-S3-devKitv1, ESP32-S3-mini-wemos, ESP32-S3-mini-weact


;--------------------------------------------------------------------

[env:ESP32-S3-mini-wemos]
platform = espressif32
board = lolin_s3_mini
framework = arduino
monitor_filters =
esp32_exception_decoder
time
log2file
board_build.arduino.memory_type = qio_opi
monitor_speed = 115200
upload_speed = 115200
board_build.partitions = huge_app.csv
build_flags =
-D BOARD_HAS_PSRAM
-D ARDUINO_USB_MODE=1
-D ARDUINO_USB_CDC_ON_BOOT=1
-D S3MINIWEMOS=1
;-D DEBUG_MINING=1
lib_deps =
https://github.com/takkaO/OpenFontRender
bblanchon/ArduinoJson@^6.21.2
https://github.com/tzapu/WiFiManager.git#v2.0.16-rc.2
mathertel/OneButton @ ^2.0.3
arduino-libraries/NTPClient
https://github.com/FastLED/FastLED
lib_ignore =
TFT_eSPI
;--------------------------------------------------------------------

;--------------------------------------------------------------------

[env:ESP32-S3-mini-weact]
platform = espressif32
board = lolin_s3_mini
framework = arduino
monitor_filters =
esp32_exception_decoder
time
log2file
board_build.arduino.memory_type = qio_opi
monitor_speed = 115200
upload_speed = 115200
board_build.partitions = huge_app.csv
build_flags =
-D BOARD_HAS_PSRAM
-D ARDUINO_USB_MODE=1
-D ARDUINO_USB_CDC_ON_BOOT=1
-D S3MINIWEACT=1
;-D DEBUG_MINING=1
lib_deps =
https://github.com/takkaO/OpenFontRender
bblanchon/ArduinoJson@^6.21.2
https://github.com/tzapu/WiFiManager.git#v2.0.16-rc.2
mathertel/OneButton @ ^2.0.3
arduino-libraries/NTPClient
https://github.com/FastLED/FastLED
lib_ignore =
TFT_eSPI
;--------------------------------------------------------------------

[env:ESP32-S3-devKitv1]
Expand Down
4 changes: 4 additions & 0 deletions src/drivers/devices/device.h
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,10 @@
#include "m5StampS3.h"
#elif defined(DEVKITV1RGB)
#include "esp32DevKitRGB.h"
#elif defined(S3MINIWEMOS)
#include "esp32S3MiniWemos.h"
#elif defined(S3MINIWEACT)
#include "esp32S3MiniWeact.h"

#else
#error "No device defined"
Expand Down
10 changes: 10 additions & 0 deletions src/drivers/devices/esp32S3MiniWeact.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
#ifndef _ESP32_S3_MINI_WEACT_H
#define _ESP32_S3_MINI_WEACT_H

#define PIN_BUTTON_1 0
#define RGB_LED_PIN 48

#define LED_DISPLAY
#define USE_LED

#endif
10 changes: 10 additions & 0 deletions src/drivers/devices/esp32S3MiniWemos.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
#ifndef _ESP32_S3_MINI_WEMOS_H
#define _ESP32_S3_MINI_WEMOS_H

#define PIN_BUTTON_1 0
#define RGB_LED_PIN 47

#define LED_DISPLAY
#define USE_LED

#endif

0 comments on commit 6d29381

Please sign in to comment.