Skip to content

Commit

Permalink
[PixelHeart] rebase to v0.15.0-rc.1
Browse files Browse the repository at this point in the history
  • Loading branch information
tokudu committed Dec 20, 2024
1 parent 467e5f8 commit 4c8aeeb
Show file tree
Hide file tree
Showing 3 changed files with 69 additions and 4 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "wled",
"version": "0.15.0-ph01.02",
"version": "0.15.0-ph01.03",
"description": "Tools for WLED project",
"main": "tools/cdata.js",
"directories": {
Expand Down
6 changes: 3 additions & 3 deletions platformio.ini
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
# ------------------------------------------------------------------------------

# CI/release binaries
default_envs = nodemcuv2, esp8266_2m, esp01_1m_full, nodemcuv2_160, esp8266_2m_160, esp01_1m_full_160, nodemcuv2_compat, esp8266_2m_compat, esp01_1m_full_compat, esp32dev, esp32_eth, lolin_s2_mini, esp32c3dev, esp32s3dev_16MB_opi, esp32s3dev_8MB_opi, esp32s3_4M_qspi, esp32_wrover
;default_envs = nodemcuv2, esp8266_2m, esp01_1m_full, nodemcuv2_160, esp8266_2m_160, esp01_1m_full_160, nodemcuv2_compat, esp8266_2m_compat, esp01_1m_full_compat, esp32dev, esp32_eth, lolin_s2_mini, esp32c3dev, esp32s3dev_16MB_opi, esp32s3dev_8MB_opi, esp32s3_4M_qspi, esp32_wrover

src_dir = ./wled00
data_dir = ./wled00/data
Expand Down Expand Up @@ -260,7 +260,7 @@ lib_deps =
https://github.com/pbolduc/AsyncTCP.git @ 1.2.0
${env.lib_deps}
# additional build flags for audioreactive
AR_build_flags = -D USERMOD_AUDIOREACTIVE
AR_build_flags = -D USERMOD_AUDIOREACTIVE
-D sqrt_internal=sqrtf ;; -fsingle-precision-constant ;; forces ArduinoFFT to use float math (2x faster)
AR_lib_deps = kosme/arduinoFFT @ 2.0.1

Expand Down Expand Up @@ -585,7 +585,7 @@ monitor_filters = esp32_exception_decoder

[env:esp32s3_4M_qspi]
;; ESP32-S3, with 4MB FLASH and <= 4MB PSRAM (memory_type: qio_qspi)
board = lolin_s3_mini ;; -S3 mini, 4MB flash 2MB PSRAM
board = lolin_s3_mini ;; -S3 mini, 4MB flash 2MB PSRAM
platform = ${esp32s3.platform}
platform_packages = ${esp32s3.platform_packages}
upload_speed = 921600
Expand Down
65 changes: 65 additions & 0 deletions platformio_override.pixelheart.ini
Original file line number Diff line number Diff line change
@@ -0,0 +1,65 @@
[platformio]
#
# This list defines what firmwares to build. You can remove the # before the name to enable it. Add a # in front of the line to disable.
# Make sure at least 1 is enabled before triggering the build process.
# This file is based on the WLED release 0.14.0b1 source code, and might not work for other versions. Adapt as required below.
#
default_envs =
# Dig2Go
dig2go


#
#
# Dig2Go
#
#
[env:dig2go]
board = esp32dev
platform = ${esp32.platform}
build_unflags = ${common.build_unflags}
build_flags = ${common.build_flags} ${esp32.build_flags}
-D WLED_DISABLE_BLYNK
-D IR_ENABLE_DEFAULT=true
-D WLED_RELEASE_NAME=\"pixel-heart-dig2go\"
-D SERVERNAME="\"pixel-heart-dig2go\""
-D LEDPIN=16
-D DEFAULT_LED_COUNT=300
-D ABL_MILLIAMPS_DEFAULT=1250
-D RLYPIN=12
-D BTNPIN=0
-D IRPIN=5
-D DMENABLED=1
${esp32.AR_build_flags}
-D SR_DMTYPE=1
-D I2S_SDPIN=19
-D I2S_WSPIN=4
-D I2S_CKPIN=18
-D SR_SQUELCH=10
-D SR_GAIN=30
lib_deps = ${esp32.lib_deps}
${esp32.AR_lib_deps}
monitor_filters = esp32_exception_decoder
board_build.partitions = ${esp32.default_partitions}
extra_scripts = ${scripts_defaults.extra_scripts}


[env:c3_magwled]
extends = env:esp32c3dev
; -D USERMOD_AUDIOREACTIVE
build_flags = ${env:esp32c3dev.build_flags}
-D BTNPIN=9
-D RLYPIN=5
-D I2S_SDPIN=10
-D I2S_WSPIN=6
-D I2S_CKPIN=7
-D MCLK_PIN=-1
-D WLED_RELEASE_NAME=\"pixel-heart-magwled\"
-D SERVERNAME="\"pixel-heart-magwled\""
; -D PIO_FRAMEWORK_ARDUINO_LWIP2_LOW_MEMORY
-D TCP_LISTEN_BACKLOG=1

lib_deps =
; https://github.com/blazoncek/arduinoFFT.git
${env:esp32c3dev.lib_deps}
; ../AsyncTCP

0 comments on commit 4c8aeeb

Please sign in to comment.