Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 22 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
language: python
python:
- "2.7"

# Cache PlatformIO packages using Travis CI container-based infrastructure
sudo: false
cache:
directories:
- "~/.platformio"

env:
- PLATFORMIO_CI_SRC=examples/TimeRTC/
- PLATFORMIO_CI_SRC=examples/rtcSetSerial/
- PLATFORMIO_CI_SRC=examples/rtcSet1
- PLATFORMIO_CI_SRC=examples/rtcSet2
- PLATFORMIO_CI_SRC=examples/rtcSet3

install:
- pip install -U platformio

script:
- platformio ci --lib=. --board=moteino --board uno --board=moteinomega
1 change: 1 addition & 0 deletions ReadMe.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
[![Build Status](https://travis-ci.org/JChristensen/MCP79412RTC.svg?branch=master)](https://travis-ci.org/JChristensen/MCP79412RTC)
# Arduino MCP79412 RTC Library v1.0 #
https://github.com/JChristensen/MCP79412RTC
ReadMe file
Expand Down
18 changes: 18 additions & 0 deletions library.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
{
"name": "MCP79412RTC",
"keywords": "RTC, i2c",
"description": "RTC Library for Microchip MCP79412 chip",
"repository":
{
"type": "git",
"url": "https://github.com/JChristensen/MCP79412RTC"
},
"dependencies":
{
"name": "Time",
"authors": "Paul Stoffregen",
"frameworks": "arduino"
},
"frameworks": "Arduino",
"platforms": "atmelavr"
}