-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplatformio.ini
85 lines (68 loc) · 3.26 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
77
78
79
80
81
82
83
84
85
; ----------------------------------------------------------------------------
; Project configuration file
; ----------------------------------------------------------------------------
[platformio]
default_envs = 04-pong
[env]
platform = espressif8266
board = d1_mini
board_build.f_cpu = 160000000L
framework = arduino
monitor_speed = 115200
upload_speed = 1500000
lib_deps = adafruit/Adafruit MCP4725 @ ^2.0.0
adafruit/Adafruit MCP23017 Arduino Library @ ^2.0.2
https://github.com/lovyan03/LovyanGFX.git#develop
; ----------------------------------------------------------------------------
; Using the DAC to control the display backlight LED with dimming effect
; ----------------------------------------------------------------------------
[env:01-fading]
src_filter = -<*> +<01-fading.cpp>
; ----------------------------------------------------------------------------
; Collision circles demo from LovyanGFX library
; ----------------------------------------------------------------------------
[env:02-collision-circles]
src_filter = -<*> +<02-collision-circles.cpp>
; ----------------------------------------------------------------------------
; NeoPixel demo
; ----------------------------------------------------------------------------
[env:03-neopixel]
src_filter = -<*> +<03-neopixel.cpp>
; ----------------------------------------------------------------------------
; Tiny Pong Game
; ----------------------------------------------------------------------------
[env:04-pong]
src_filter = -<*> +<04-pong/*>
; ----------------------------------------------------------------------------
; Tiny Top-Down game demo
; ----------------------------------------------------------------------------
[env:05-move]
src_filter = -<*> +<05-move/*>
; ----------------------------------------------------------------------------
; Tiny Platformer game demo
; ----------------------------------------------------------------------------
[env:06-jump]
src_filter = -<*> +<06-jump/*>
; ----------------------------------------------------------------------------
; Improved button handling and support for software debouncing
; ----------------------------------------------------------------------------
[env:07-buttons]
src_filter = -<*> +<07-buttons.cpp>
; ----------------------------------------------------------------------------
; First experiments with ESPboy2
; ----------------------------------------------------------------------------
; Copyright (c) 2021 Stéphane Calderoni (https://github.com/m1cr0lab)
;
; This program is free software: you can redistribute it and/or modify
; it under the terms of the GNU General Public License as published by
; the Free Software Foundation, either version 3 of the License, or
; (at your option) any later version.
;
; This program is distributed in the hope that it will be useful,
; but WITHOUT ANY WARRANTY; without even the implied warranty of
; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
; GNU General Public License for more details.
;
; You should have received a copy of the GNU General Public License
; along with this program. If not, see <https://www.gnu.org/licenses/>.
; ----------------------------------------------------------------------------