-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplatformio.ini
76 lines (69 loc) · 2.01 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
64
65
66
67
68
69
70
71
72
73
74
75
76
; 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:Arduino-UNO328]
platform = atmelavr
board = uno
framework = arduino
build_flags = -D ARDUINO_BOARDS
monitor_filters = send_on_enter
lib_deps =
marcoschwartz/LiquidCrystal_I2C @ ^1.1.4
adafruit/Adafruit SSD1306@^2.5.7
[env:Mega-Atmega2560]
platform = atmelavr
board = megaatmega2560
framework = arduino
build_flags = -D ARDUINO_BOARDS
lib_deps =
marcoschwartz/LiquidCrystal_I2C @ ^1.1.4
fmalpartida/LiquidCrystal @ ^1.5.0
adafruit/Adafruit SSD1306@^2.5.7
[env:nanoatmega328new]
platform = atmelavr
board = nanoatmega328new
framework = arduino
build_flags = -D ARDUINO_BOARDS
lib_deps =
marcoschwartz/LiquidCrystal_I2C @ ^1.1.4
adafruit/Adafruit SSD1306@^2.5.7
[env:LGT8F328P]
platform = lgt8f
board = LGT8F328P
board_build.f_cpu = 32000000L
framework = arduino
build_flags = -D LGT8F328P -D ARDUINO_BOARDS
lib_deps =
marcoschwartz/LiquidCrystal_I2C @ ^1.1.4
adafruit/Adafruit SSD1306@^2.5.7
[env:LGT8F328P Test]
platform = lgt8f
board = LGT8F328P
board_build.f_cpu = 32000000L
framework = arduino
build_flags = -D LGT8F328P -D ARDUINO_BOARDS -D zDEBUG_LOG -D DUMMY_SENSORS -D _DUMMY_INPUTS -D SCREEN_SERIAL_1602
lib_deps =
marcoschwartz/LiquidCrystal_I2C @ ^1.1.4
adafruit/Adafruit SSD1306@^2.5.7
[env:Micro-Atmega32u4]
platform = atmelavr
board = micro
framework = arduino
build_flags = -D ARDUINO_BOARDS
lib_deps =
marcoschwartz/LiquidCrystal_I2C @ ^1.1.4
adafruit/Adafruit SSD1306@^2.5.7
[env:RaspberryPi-PICO]
platform = raspberrypi
framework = arduino
board = pico
build_flags = -D RASPBERRYPI_PICO -D zDEBUG_LOG -D DUMMY_SENSORS -D _DUMMY_INPUTS -D SCREEN_SERIAL_1602
lib_deps =
marcoschwartz/LiquidCrystal_I2C @ ^1.1.4
adafruit/Adafruit SSD1306@^2.5.7