2025-01-0400
This commit is contained in:
parent
f73cdab130
commit
a3f5069845
|
@ -6,6 +6,11 @@ default_envs = cyd
|
||||||
platform = espressif32
|
platform = espressif32
|
||||||
board = esp32dev
|
board = esp32dev
|
||||||
framework = arduino
|
framework = arduino
|
||||||
|
monitor_speed = 115200
|
||||||
|
monitor_filters = esp32_exception_decoder, time
|
||||||
|
upload_speed = 921600
|
||||||
|
board_build.partitions=min_spiffs.csv
|
||||||
|
|
||||||
lib_deps =
|
lib_deps =
|
||||||
bodmer/TFT_eSPI@^2.5.33
|
bodmer/TFT_eSPI@^2.5.33
|
||||||
nitek/XPT2046_Bitbang_Slim @ 2.0.0
|
nitek/XPT2046_Bitbang_Slim @ 2.0.0
|
||||||
|
@ -22,11 +27,6 @@ lib_deps =
|
||||||
FS
|
FS
|
||||||
SPI
|
SPI
|
||||||
|
|
||||||
|
|
||||||
monitor_speed = 115200
|
|
||||||
monitor_filters = esp32_exception_decoder, time
|
|
||||||
upload_speed = 921600
|
|
||||||
board_build.partitions=min_spiffs.csv
|
|
||||||
build_flags =
|
build_flags =
|
||||||
-DUSER_SETUP_LOADED
|
-DUSER_SETUP_LOADED
|
||||||
-DUSE_HSPI_PORT
|
-DUSE_HSPI_PORT
|
||||||
|
@ -55,6 +55,8 @@ build_flags =
|
||||||
build_flags =
|
build_flags =
|
||||||
${env.build_flags}
|
${env.build_flags}
|
||||||
-DILI9341_2_DRIVER
|
-DILI9341_2_DRIVER
|
||||||
|
-DSTASSID=\"FRITZ!Box7362SL\"
|
||||||
|
-DSTAPSK=\"BorisundEva2007\"
|
||||||
|
|
||||||
[env:cyd2usb]
|
[env:cyd2usb]
|
||||||
build_flags =
|
build_flags =
|
||||||
|
@ -62,3 +64,15 @@ build_flags =
|
||||||
-DST7789_DRIVER
|
-DST7789_DRIVER
|
||||||
-DTFT_RGB_ORDER=TFT_BGR
|
-DTFT_RGB_ORDER=TFT_BGR
|
||||||
-DTFT_INVERSION_OFF
|
-DTFT_INVERSION_OFF
|
||||||
|
-DSTASSID=\"FRITZ!Box7362SL\"
|
||||||
|
-DSTAPSK=\"BorisundEva2007\"
|
||||||
|
|
||||||
|
[env:cydboris]
|
||||||
|
build_flags =
|
||||||
|
${env.build_flags}
|
||||||
|
-DILI9341_2_DRIVER
|
||||||
|
-DSTASSID=\"FRITZ!Box7362SL\"
|
||||||
|
-DSTAPSK=\"BorisundEva2007\"
|
||||||
|
-DGATEWAY=\"192.168.2.1\"
|
||||||
|
-DDNS=\"192.168.2.1\"
|
||||||
|
-DKMYIP=\"192.168.2.41\"
|
||||||
|
|
|
@ -11,8 +11,8 @@
|
||||||
//#include <WiFiUdp.h>
|
//#include <WiFiUdp.h>
|
||||||
|
|
||||||
// Replace with your network credentials
|
// Replace with your network credentials
|
||||||
const char* ssid = "MagentaWLAN-RGDO";
|
const char* ssid = STASSID;
|
||||||
const char* password = "93329248424922704583";
|
const char* password = STAPSK;
|
||||||
|
|
||||||
const char* NTP_SERVER = "de.pool.ntp.org";
|
const char* NTP_SERVER = "de.pool.ntp.org";
|
||||||
const char* TZ_INFO = "CET-1CEST-2,M3.5.0/02:00:00,M10.5.0/03:00:00"; // enter your time zone (https://remotemonitoringsystems.ca/time-zone-abbreviations.php)
|
const char* TZ_INFO = "CET-1CEST-2,M3.5.0/02:00:00,M10.5.0/03:00:00"; // enter your time zone (https://remotemonitoringsystems.ca/time-zone-abbreviations.php)
|
||||||
|
|
Loading…
Reference in New Issue
Block a user