-
-
Notifications
You must be signed in to change notification settings - Fork 224
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Feature Request: Wemos S2 Pico support #1311
Comments
ist das ein ESP32 im RP2040 (Raspberry Pi Pico 2040) Format? |
50x23mm a bit larger |
I found another bug with this board. So if you use a power supply, no boot. If you plug it into a PC, no boot, unless I start minicom (linux). |
Seems to be related to serial.flush espressif/arduino-esp32#7554 |
Is there a way to disable the serial console in settings? that could be a quick fix |
I've removed serial code and recompiled, and it boots without a computer |
@ldrolez could you provide a PR with your changes to support ESP32-S2 out of the box, |
This is my diff, don't have time to find which macros to use sorry index 0bba14d..3e4c0eb 100644
--- a/src/app.cpp
+++ b/src/app.cpp
@@ -14,9 +14,9 @@ app::app() : ah::Scheduler {} {}
//-----------------------------------------------------------------------------
void app::setup() {
- Serial.begin(115200);
- while (!Serial)
- yield();
+ //Serial.begin(115200);
+ //while (!Serial)
+ // yield();
resetSystem();
@@ -24,7 +24,7 @@ void app::setup() {
mSettings.getPtr(mConfig);
ah::Scheduler::setup(mConfig->inst.startWithoutTime);
DPRINT(DBG_INFO, F("Settings valid: "));
- DSERIAL.flush();
+ //DSERIAL.flush();
if (mSettings.getValid())
DBGPRINTLN(F("true"));
else |
Platform
ESP32
Assembly
I did the assebly by myself
nRF24L01+ Module
nRF24L01+ plus
Antenna
circuit board
Power Stabilization
Elko (~100uF)
Connection picture
Version
0.8.36
Github Hash
6fb0535
Build & Flash Method
ESP Tools (flash)
Setup
4 inverters + mqtt + oled display (included on wemos s2 board)
Debug Serial Log output
No response
Error description
PINs for the Wemos PICO S2 are not supported in the web gui.
sch_s2_pico_v1.0.0.pdf
The text was updated successfully, but these errors were encountered: