refactored added new LCD

This commit is contained in:
2021-07-19 07:28:49 +02:00
commit 4af72b1710
21 changed files with 3527 additions and 0 deletions

36
platformio.ini Normal file
View File

@@ -0,0 +1,36 @@
; 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
; http://docs.platformio.org/page/projectconf.html
[platformio]
default_envs = esp32
src_dir = .
[common]
lib_deps_builtin =
WiFi
TFT_eSPI
lib_deps =
#adafruit/Adafruit BME680 Library
#adafruit/Adafruit GFX Library
#adafruit/Adafruit Neopixel
#adafruit/Adafruit Unified Sensor
knolleary/PubSubClient
robtillaart/RunningMedian
bodmer/Tjpg_decoder
[env:esp32]
platform = espressif32
board = esp-wrover-kit
framework = arduino
monitor_speed = 115200
lib_deps =
${common.lib_deps_builtin}
${common.lib_deps}