Skip to content

Commit e76c6a0

Browse files
committed
examples organize
1 parent 46e193f commit e76c6a0

File tree

78 files changed

+344
-392
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

78 files changed

+344
-392
lines changed

.gitignore

-3
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,9 @@ src/main.cpp
88
lib
99
.travis.yml
1010
!/.travis.yml
11-
platformio.ini
1211
/TODO.txt
13-
/classes.odg
1412
.gitignore
1513
!/.gitignore
16-
*.odg
1714
examples/clickEncoder
1815
examples/screenNav
1916
/dev

classes.odg

-15.5 KB
Binary file not shown.

examples/ESP32/platformio.ini

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
[platformio]
2+
src_dir=ClickEncoderTFT
3+
4+
[env:lolin32]
5+
platform = espressif32
6+
board = lolin32
7+
framework=arduino
8+
build_flags =-Wno-reorder
9+
build_unflags=-Werror=reorder

examples/SDCard/platformio.ini

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
[platformio]
2+
src_dir=SDCard
3+
4+
[env:due]
5+
board=due
6+
platform = atmelsam
7+
framework = arduino
8+
upload_port=/dev/ttyACM0
9+
build_flags =
10+
-DMENU_FMT_WRAPS
11+
-DMENU_ASYNC

examples/SSD1306Ascii/platformio.ini

+1-2
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,7 @@
99
; http://docs.platformio.org/page/projectconf.html
1010

1111
[platformio]
12-
src_dir=Button_Navigation
13-
; src_dir=SSD1306Ascii
12+
src_dir=SSD1306Ascii
1413

1514
[env:adafruit_crickit_m0]
1615
board=adafruit_crickit_m0
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
[platformio]
2+
src_dir=Button_Navigation
3+
; src_dir=SSD1306Ascii
4+
5+
[env:adafruit_crickit_m0]
6+
board=adafruit_crickit_m0
7+
platform = atmelsam
8+
framework = arduino
9+
; build_flags =
10+
; -DMENU_DEBUG
11+
; -Wno-strict-aliasing -Wno-sign-compare -Wno-write-strings
12+
13+
; [env:nanoatmega328]
14+
; platform = atmelavr
15+
; board = nanoatmega328
16+
; framework = arduino
17+
; upload_port=/dev/ttyUSB*
18+
; upload_flags=-V
19+
; upload_speed=57600
20+
; build_flags = -DMENU_DEBUG
21+
; src_build_flags = !echo "-Wno-write-strings -Wno-reorder -fno-strict-aliasing -DLOC="$PLATFORMIO_LOC
22+
23+
; [env:teensy31]
24+
; platform = teensy
25+
; board = teensy31
26+
; framework = arduino
27+
;; build_flags = -lstdc++
28+
29+
; [env:esp12e]
30+
; platform = espressif8266
31+
; board = esp12e
32+
; framework = arduino
33+
; upload_speed=921600
34+
; build_flags = -lstdc++ -DDEBUG
35+
36+
; [env:wemos]
37+
; platform = espressif8266
38+
; board = d1_mini_pro
39+
; framework = arduino
40+
; ; upload_speed=1500000
41+
; upload_speed=921600

examples/SdFat/platformio.ini

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
[platformio]
2+
src_dir=SdFat
3+
4+
; [env:due]
5+
; board=due
6+
; platform = atmelsam
7+
; framework = arduino
8+
; upload_port=/dev/ttyACM0
9+
; build_flags =
10+
; -DMENU_FMT_WRAPS
11+
; -DMENU_ASYNC
12+
13+
[env:uno]
14+
platform=atmelavr
15+
board=pro8MHzatmega328
16+
framework=arduino
17+
upload_protocol = usbasp
18+
upload_flags = -Pusb
19+
lib_ignore=WebSockets

examples/Serial/ansiSerial/.gitignore

-4
This file was deleted.

examples/Serial/ansiSerial/.travis.yml

-65
This file was deleted.

examples/Serial/serialio/.gitignore

-4
This file was deleted.

examples/Serial/serialio/.travis.yml

-65
This file was deleted.

examples/U8GLib/platformio.ini

-1
Original file line numberDiff line numberDiff line change
@@ -49,4 +49,3 @@ upload_speed=57600
4949
; board = esp12e
5050
; framework = arduino
5151
; upload_speed=921600
52-
; build_flags = -Wno-comment -Wno-reorder -Wno-strict-aliasing -Wno-builtin-macro-redefined -lstdc++ -DNODEBUG -DMENU_SSID="\"r-site.net\"" -DMENU_PASS="\"rsite.2011\""

examples/adafruitGfx/lcdMono/.gitignore

-4
This file was deleted.

examples/adafruitGfx/lcdMono/.travis.yml

-65
This file was deleted.

examples/adafruitGfx/tft/.gitignore

-4
This file was deleted.

examples/adafruitGfx/tft/.travis.yml

-65
This file was deleted.

0 commit comments

Comments
 (0)