-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathplatformio.ini
63 lines (51 loc) · 1.54 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
; http://docs.platformio.org/page/projectconf.html
[common]
arduino_core_2_3_0 = [email protected]
arduino_core_2_4_0 = [email protected]
arduino_core_2_4_1 = [email protected]
arduino_core_2_4_2 = [email protected]
arduino_core_2_5_0 = [email protected]
arduino_core_stage = https://github.com/platformio/platform-espressif8266.git#feature/stage
[platformio]
env_default = nodemcuv2
description = "Tetris clock implementation for RGB matrix and ESP8266"
; You MUST inject these options into [env:] section
; using ${common_env_data.***} (see below)
[common_env_data]
build_flags =
;-D VERSION=1.2.3
;-D DEBUG=1
lib_deps_builtin =
; DNSServer
lib_deps_external =
Adafruit [email protected]
Adafruit GFX [email protected]
PxMatrix LED MATRIX [email protected]
[env:nodemcuv2]
platform = ${common.arduino_core_2_5_0}
framework = arduino
board = nodemcuv2
upload_speed = 512000
; board_build.f_cpu = 160000000L
; Build options
build_flags =
${common_env_data.build_flags}
; Library options
lib_deps =
${common_env_data.lib_deps_builtin}
${common_env_data.lib_deps_external}
; Serial Monitor options
monitor_speed = 115200
; Unit Testing options
test_ignore = test_desktop