-
Notifications
You must be signed in to change notification settings - Fork 33
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
adaa4ee
commit 886a025
Showing
5 changed files
with
85 additions
and
32 deletions.
There are no files selected for viewing
This file contains 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 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 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 |
---|---|---|
@@ -1,5 +1,5 @@ | ||
name=PsychicHttp | ||
version=1.2.0 | ||
version=2.0.0 | ||
author=Zach Hoeken <[email protected]> | ||
maintainer=Zach Hoeken <[email protected]> | ||
sentence=PsychicHttp is a robust webserver that supports http/https + websockets. | ||
|
This file contains 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,75 @@ | ||
; 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] | ||
lib_dir = . | ||
src_dir = examples/platformio | ||
; src_dir = examples/arduino | ||
|
||
[env] | ||
platform = espressif32 | ||
framework = arduino | ||
board = esp32-s3-devkitc-1 | ||
upload_port = /dev/ttyACM0 | ||
monitor_port = /dev/ttyACM1 | ||
monitor_speed = 115200 | ||
monitor_filters = esp32_exception_decoder | ||
lib_deps = | ||
plageoj/UrlEncode@^1.0.1 | ||
bblanchon/ArduinoJson@^7.0.4 | ||
bblanchon/ArduinoTrace@^1.2.0 | ||
board_build.filesystem = littlefs | ||
build_flags = | ||
-Wall | ||
-Wextra | ||
|
||
[env:arduino2] | ||
platform = [email protected] | ||
|
||
[env:arduino2-ssl] | ||
platform = [email protected] | ||
build_flags = -D PSY_ENABLE_SSL | ||
|
||
[env:arduino2-regex] | ||
platform = [email protected] | ||
build_flags = -D PSY_ENABLE_REGEX | ||
|
||
[env:arduino3] | ||
platform = espressif32 | ||
platform_packages= | ||
platformio/framework-arduinoespressif32 @ https://github.com/espressif/arduino-esp32.git#3.0.4 | ||
platformio/framework-arduinoespressif32-libs @ https://github.com/espressif/arduino-esp32/releases/download/3.0.4/esp32-arduino-libs-3.0.4.zip | ||
|
||
[env:arduino3-ssl] | ||
platform = espressif32 | ||
platform_packages= | ||
platformio/framework-arduinoespressif32 @ https://github.com/espressif/arduino-esp32.git#3.0.4 | ||
platformio/framework-arduinoespressif32-libs @ https://github.com/espressif/arduino-esp32/releases/download/3.0.4/esp32-arduino-libs-3.0.4.zip | ||
build_flags = -D PSY_ENABLE_SSL | ||
|
||
[env:arduino3-regex] | ||
platform = espressif32 | ||
platform_packages= | ||
platformio/framework-arduinoespressif32 @ https://github.com/espressif/arduino-esp32.git#3.0.4 | ||
platformio/framework-arduinoespressif32-libs @ https://github.com/espressif/arduino-esp32/releases/download/3.0.4/esp32-arduino-libs-3.0.4.zip | ||
build_flags = -D PSY_ENABLE_REGEX | ||
|
||
[env:waveshare-4-3-touchscreen] | ||
lib_deps = ${env.lib_deps} | ||
https://github.com/esp-arduino-libs/ESP32_IO_Expander | ||
build_flags = | ||
-D PSY_ENABLE_SDCARD | ||
-D WAVESHARE_43_TOUCH | ||
|
||
[env:dev] | ||
build_flags = | ||
${env.build_flags} | ||
-D CORE_DEBUG_LEVEL=5 | ||
-D PSY_DEVMODE |
This file contains 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