forked from sqfmi/Watchy
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathplatformio.ini
63 lines (57 loc) · 1.66 KB
/
platformio.ini
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
; 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:base]
platform = espressif32@6.7.0
framework = arduino
;CDC enabled on boot:
build_flags = -DCDC_ENABLED -DJTAG_ENABLED -DMSC_ENABLED
;erase flash before upload:
;upload_flags = --erase-all
;upload speed:
upload_speed = 115200
;build mode debug
build_type = debug
;upload port (put yours here):
;upload_port = COM7 ;for windows
;monitor_port = COM7 ;for windows
;upload_port = /dev/ttyACM0 ;for linux
;monitor_port = /dev/ttyACM0 ;for linux
;upload_port = /dev/cu.usbserial-0001 ;for mac
;monitor_port = /dev/cu.usbserial-0001 ;for mac
board_build.partitions = default_8MB.csv
monitor_speed = 115200
lib_deps =
Adafruit GFX Library
Arduino_JSON
DS3232RTC
NTPClient
https://github.com/orbitalair/Rtc_Pcf8563.git#master
https://github.com/ZinggJM/GxEPD2.git#master
https://github.com/tzapu/WiFiManager.git#master
[env:v3_0]
; This is for v3
extends = env:base
board = esp32-s3-devkitc-1
build_flags = -DARDUINO_ESP32S3_DEV -Wunused-variable
[env:v2_0]
; This is for v3
extends = env:base
board = watchy
build_flags = -DARDUINO_WATCHY_V20
[env:v1_5]
; This is for v3
extends = env:base
board = watchy
build_flags = -DARDUINO_WATCHY_V15
[env:v1_0]
; This is for v3
extends = env:base
board = watchy
build_flags = -DARDUINO_WATCHY_V10