Files

copied
Last update 7 years 1 month by Jeremy Poulter
FilesWandFirmwareWand_Firmware
..
lib
src
.gitignore
platformio.ini
platformio.ini
; PlatformIO Project Configuration File ; ; Build options: build flags, source filter, extra scripting ; Upload options: custom port, speed and extra flags ; Library options: dependencies, extra library storages ; ; Please visit documentation for the other options and examples ; http://docs.platformio.org/en/stable/projectconf.html [platformio] env_default = wand [common] version = -DVERSION=0.0.1 build_flags_debug = -DDEBUG=1 lib_deps = I2Cdevlib-MPU6050 ArduinoJson [env:uno] platform = atmelavr board = uno framework = arduino build_flags = ${common.version} ${common.build_flags_debug} lib_deps = ${common.lib_deps} [env:wand] platform = atmelavr board = wandp framework = arduino upload_protocol = arduinoisp build_flags = ${common.version} ${common.build_flags_debug} lib_deps = ${common.lib_deps}
Report a bug