Restored library.json file. Added Travis CI support

This commit is contained in:
T81
2018-05-22 15:01:49 +03:00
parent 3ec9b1e368
commit 03c7ddcf87
2 changed files with 36 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
language: python
cache:
directories:
- "~/.platformio"
install:
- pip install -U platformio
env:
- BOARD=uno
- BOARD=leonardo
- BOARD=megaatmega2560
- BOARD=due
script:
- set -eo pipefail;
for e in examples/*; do
platformio ci --board=$BOARD --lib=. $e/*;
done
+16
View File
@@ -0,0 +1,16 @@
{
"name": "Bounce2",
"keywords": "bounce, signal, input, ouput",
"description": "Debouncing library for Arduino or Wiring",
"repository": {
"type": "git",
"url": "https://github.com/thomasfredericks/Bounce2.git"
},
"version": "2.41",
"exclude": [
"*.png",
"*.zip"
],
"frameworks": "arduino",
"platforms": "*"
}