Skip to content
This repository has been archived by the owner on Feb 8, 2024. It is now read-only.

Commit

Permalink
Add CI and stuff for releasing with new examples
Browse files Browse the repository at this point in the history
  • Loading branch information
gabriel-milan committed Apr 6, 2020
1 parent 84628d4 commit 90350f0
Show file tree
Hide file tree
Showing 4 changed files with 28 additions and 3 deletions.
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
*.yml
examples/PlatformIO_All_Gets_Example/.vscode/
examples/PlatformIO_All_Gets_Example/include/README
examples/PlatformIO_All_Gets_Example/lib/README
Expand Down
20 changes: 20 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
language: c
sudo: false
cache:
directories:
- ~/arduino_ide
- ~/.arduino15/packages/
git:
depth: false
quiet: true
# env:
# global:
# # You can uncomment this to explicitly choose an (old) version of the Arduino IDE
# - ARDUINO_IDE_VERSION="1.8.10"
before_install:
- source <(curl -SLs https://raw.githubusercontent.com/adafruit/travis-ci-arduino/master/install.sh)
install:
# Note that every library should be installed in a seperate command
- arduino --install-library "TinyMPU6050"
script:
- build_main_platforms
8 changes: 7 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,15 @@
# TinyMPU6050

[![Build Status](https://travis-ci.org/gabriel-milan/TinyMPU6050.png?branch=master)](https://travis-ci.org/gabriel-milan/TinyMPU6050)


Inspired by [tockn's library](https://github.com/tockn/MPU6050_tockn) simplicity and ease of use, this implementation focuses on performance and accuracy while still being lightweight.

You're more than welcome to collaborate!

## Warning
While in calibration mode, *DO NOT MOVE* the sensor.

## Disclaimer
- Temperature isn't covered by this library (my personal choice);
- It's still in development.
- It's ALWAYS in development
2 changes: 1 addition & 1 deletion library.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name=TinyMPU6050
version=0.5.1
version=0.5.2
author=Gabriel Milan <[email protected]>
maintainer=Gabriel Milan <[email protected]>
sentence=Tiny implementation for MPU6050 focusing on performance and accuracy
Expand Down

0 comments on commit 90350f0

Please sign in to comment.