-
Notifications
You must be signed in to change notification settings - Fork 6
Migrate FactoryTest_wMenu to PlatformIO #440
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
Merged
nk25719
merged 6 commits into
main
from
feature/352-firmware-factorytest_wmenu-migrate-to-platformio
Apr 4, 2026
+60
−14
Merged
Changes from all commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
5887964
Migrate FactoryTest_wMenu to PlatformIO
Yukti007 f83b233
Fix DFPlayer: comment out private enableACK(), move detected print af…
Yukti007 defcc33
Added MAC address display to splash screen
Yukti007 d6d9b19
fixed wifi test after migration
Yukti007 598a47a
ignore \r in line reader
Yukti007 f3e34b8
updated firmware version
Yukti007 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Some comments aren't visible on the classic Files Changed page.
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,6 @@ | ||
| .pio | ||
| .vscode/.browse.c_cpp.db* | ||
| .vscode/c_cpp_properties.json | ||
| .vscode/launch.json | ||
| .vscode/ipch | ||
| compile_commands.json |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,28 @@ | ||
| ; PlatformIO Project Configuration File | ||
| ; | ||
| ; Build options: build flags, source filter | ||
| ; Upload options: custom upload port, speed and extra flags | ||
| ; Library options: dependencies, extra library storages | ||
| ; Advanced options: extra scripting | ||
| ; | ||
| ; Please visit documentation for the other options and examples | ||
| ; https://docs.platformio.org/page/projectconf.html | ||
|
|
||
| [platformio] | ||
| src_dir = FactoryTest_wMenu | ||
|
|
||
| [env:esp32dev] | ||
| platform = espressif32@^6.12.0 | ||
| board = esp32dev | ||
| board_build.filesystem = littlefs | ||
| framework = arduino | ||
| monitor_speed = 115200 | ||
| build_flags = | ||
| -DELEGANTOTA_USE_ASYNC_WEBSERVER=1 | ||
| lib_deps = | ||
| marcoschwartz/LiquidCrystal_I2C@^1.1.4 | ||
| dfrobot/DFRobotDFPlayerMini@^1.0.6 | ||
| esp32async/AsyncTCP@^3.4.10 | ||
| esp32async/ESPAsyncWebServer@^3.7.3 | ||
| ayushsharma82/ElegantOTA@^3.1.7 | ||
| mathertel/OneButton@^2.6.2 |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yukti's solution worked: (ignore \r in the line reader and only terminate on \n. )
Side effect in the Arduino IDE we need to wait until it timeout 25s but it is successfully connecting to the wifi now.