-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplatformio.ini
38 lines (36 loc) · 992 Bytes
/
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
; 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:attiny85]
platform = atmelavr
board = attiny85
framework = arduino
board_build.f_cpu = 8000000L ; 8Mhz
upload_protocol = arduino
upload_flags =
-C
${platformio.packages_dir}/tool-avrdude/avrdude.conf
-p
$BOARD_MCU
-P
$UPLOAD_PORT
-b
$UPLOAD_SPEED
-c
$UPLOAD_PROTOCOL
upload_command = avrdude $UPLOAD_FLAGS -U flash:w:$SOURCE:i
upload_port = /dev/ttyUSB0
upload_speed = 19200
lib_deps =
datacute/Tiny4kOLED@^2.2.2
adafruit/TinyWireM@^1.1.1
./tiny-i2c
# Install the TinyI2C library from https://github.com/technoblogy/tiny-i2c
build_src_flags = -Wall -pedantic-errors
debug_build_flags = -O0 -g -ggdb -Wall