Replies: 2 comments 4 replies
-
a D1 mini is an 8266 |
Beta Was this translation helpful? Give feedback.
3 replies
-
Some of the other projects definitely have issues compiling. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
I can't seem to get anything other than the Demo to build and upload. I'm attempting to get the Atom Lamp config to build for a Wemos D1 Mini ESP32.
The platformio.ini I'm using is.
`[platformio]
data_dir = ./data
default_envs = demowemos
[common]
lib_deps = crankyoldgit/IRremoteESP8266 @ ^2.7.20
fastled/FastLED @ ^3.4.0
adafruit/Adafruit BusIO @ ^1.9.1
adafruit/Adafruit GFX Library @ ^1.10.12
bblanchon/ArduinoJson @ ^6.8.14
olikraus/U8g2 @ ^2.28.8
joaolopesf/RemoteDebug @ ^3.0.5
kosme/arduinoFFT @ ^1.5.6
me-no-dev/AsyncTCP @ ^1.1.1
thomasfredericks/Bounce2 @ ^2.7.0
me-no-dev/ESP Async WebServer @ ^1.2.3
[env]
platform = https://github.com/platformio/platform-espressif32.git
framework = arduino
build_type = debug
build_unflags = -std=gnu++11
lib_deps = ${common.lib_deps}
; This partition table attempts to fit everything in 4M of flash.
board_build.partitions = partitions_custom.csv
monitor_filters = esp32_exception_decoder
[env:demowemos]
platform = espressif32
board = esp32dev
monitor_speed = 115200
upload_speed = 921600
upload_port = COM11 ; This will vary by machine
build_flags = -DATOMLIGHT=1
-std=gnu++17
-Ofast `
And the faults I'm getting are below
`In file included from include/effects/particles.h:44:0,
from include/effects/stareffect.h:46,
from src/effects.cpp:36:
include/effects/faneffects.h: In function 'int GetFanPixelOrder(int, PixelOrder)':
include/effects/faneffects.h:117:26: error: 'FanPixelsVertical' was not declared in this scope
return fanBase + ((FanPixelsVertical[fPos] + LED_FAN_OFFSET_BU) % FAN_SIZE);
^
src/effects.cpp: At global scope:
src/effects.cpp:379:9: error: expected type-specifier before 'ChannelBeatEffect'
new ChannelBeatEffect("ChannelBeat"),
^
src/effects.cpp:379:9: error: expected '}' before 'ChannelBeatEffect'
src/effects.cpp:379:9: error: expected ',' or ';' before 'ChannelBeatEffect'
src/effects.cpp:549:1: error: expected declaration before '}' token
};
^
*** [.pio\build\demo2\src\effects.cpp.o] Error 1
========================================================== [FAILED] Took 20.03 seconds ==========================================================
Environment Status Duration
demowemos FAILED 00:00:20.028`
Any help would be appreciated.
Thank you
Beta Was this translation helpful? Give feedback.
All reactions