Got a single frame exporting correctly

This commit is contained in:
2024-08-27 21:54:56 -04:00
parent 7a454edc46
commit e4506bd9f0
8 changed files with 161 additions and 18 deletions

View File

@@ -7,34 +7,37 @@
;
; Please visit documentation for the other options and examples
; https://docs.platformio.org/page/projectconf.html
[platformio]
default_envs = esp32s3_release ; this ensures that only this environment is built for anything but the debug build
default_envs = esp32s3_release
extra_configs = platformio-local.ini
[env]
; platform = espressif32
upload_protocol = esptool
platform = https://github.com/platformio/platform-espressif32.git
board = esp32-s3-devkitc-1
framework = arduino
build_flags = -Iinclude
monitor_speed = 9600
monitor_filters = colorize, send_on_enter
upload_speed = 2000000 ;ESP32S3 USB-Serial Converter maximum 2000000bps
lib_deps = adafruit/Adafruit NeoPixel@^1.12.0
upload_speed = 2000000
lib_deps =
adafruit/Adafruit NeoPixel@^1.12.3
fastled/FastLED@^3.7.3
[env:esp32s3_release]
build_type = release
monitor_port = COM21
upload_port = COM20
[env:esp32s3_debug]
debug_init_break = tbreak setup
debug_tool = esp-builtin
build_type = debug
debug_speed = 20000
; debug_port = COM7
; monitor_port = COM14
build_flags =
-D DEBUG = 1
-I include
-D DEBUG = 1
-I include
monitor_port = COM21
upload_port = COM20