-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathplatformio.ini
More file actions
92 lines (90 loc) · 1.99 KB
/
platformio.ini
File metadata and controls
92 lines (90 loc) · 1.99 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
; 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
[env:esp32]
platform = espressif32
board = esp32dev
framework = arduino
monitor_speed = 115200
monitor_port = COM5
upload_port = COM5
lib_deps =
arduino-libraries/NTPClient @ ^3.2.1
gyverlibs/UnixTime @ ^1.1
bblanchon/ArduinoJson @ ^7.0.0
khoih-prog/ESP32TimerInterrupt @ ^2.3.0
olikraus/U8g2 @ ^2.35.19
bodmer/TFT_eSPI @ ^2.5.43
me-no-dev/AsyncTCP @ ^1.1.1
me-no-dev/ESP Async WebServer @ ^1.2.4
extra_scripts = pre:version_inc.py
board_build.partitions = min_spiffs.csv
monitor_filters =
default
time
build_flags =
-DUSER_SETUP_LOADED=1
-DGC9A01_DRIVER=1
-DTFT_WIDTH=240
-DTFT_HEIGHT=240
-DTFT_MISO=19
-DTFT_MOSI=23
-DTFT_SCLK=18
-DTFT_CS=15
-DTFT_DC=2
-DTFT_RST=-1
-DLOAD_GLCD=1
-DLOAD_FONT2=1
-DLOAD_FONT4=1
-DLOAD_FONT6=1
-DLOAD_FONT7=1
-DLOAD_FONT8=1
-DLOAD_GFXFF=1
-DSMOOTH_FONT=1
-DSPI_FREQUENCY=27000000
[env:esp12e]
platform = espressif8266
board = esp07s
framework = arduino
monitor_speed = 115200
monitor_port = COM4
upload_port = COM4
lib_deps =
arduino-libraries/NTPClient @ ^3.2.1
gyverlibs/UnixTime @ ^1.1
bblanchon/ArduinoJson @ ^7.0.0
khoih-prog/ESP8266TimerInterrupt @ ^1.6.0
me-no-dev/ESPAsyncTCP @ ^1.2.2
me-no-dev/ESP Async WebServer @ ^1.2.3
olikraus/U8g2 @ ^2.35.19
bodmer/TFT_eSPI @ ^2.5.43
extra_scripts = pre:version_inc.py
monitor_filters =
esp8266_exception_decoder
default
time
build_flags =
-DUSER_SETUP_LOADED=1
-DGC9A01_DRIVER=1
-DTFT_WIDTH=240
-DTFT_HEIGHT=240
-DTFT_MOSI=13
-DTFT_SCLK=14
-DTFT_CS=15
-DTFT_DC=0
-DTFT_RST=-1
-DLOAD_GLCD=1
-DLOAD_FONT2=1
-DLOAD_FONT4=1
-DLOAD_FONT6=1
-DLOAD_FONT7=1
-DLOAD_FONT8=1
-DLOAD_GFXFF=1
-DSMOOTH_FONT=1
-DSPI_FREQUENCY=27000000