From e3c0659e07c6cb10026e618ac8bf045074ae1d46 Mon Sep 17 00:00:00 2001 From: marcelbuesing Date: Fri, 25 May 2018 22:31:51 +0200 Subject: [PATCH] Add CI build status badge --- README.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 4421c09..7f103c0 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,6 @@ -# BME680 + Rust -This repository contains a native Rust implementation for the [BME680](https://www.bosch-sensortec.com/bst/products/all_products/bme680) environmental sensor. The library can be used to read the gas, pressure, humidity and temperature sensors via I²C. +BME680 + Rust [![Build Status](https://travis-ci.org/marcelbuesing/bme680-hal.svg?branch=master)](https://travis-ci.org/marcelbuesing/bme680-hal) +============= + +This repository contains a pure Rust implementation for the [BME680](https://www.bosch-sensortec.com/bst/products/all_products/bme680) environmental sensor. The library can be used to read the gas, pressure, humidity and temperature sensors via I²C. The library uses the [embedded-hal](https://github.com/japaric/embedded-hal) library to abstract reading and writing via I²C. In the examples you can find a demo how to use the library in Linux using the [linux-embedded-hal](https://github.com/japaric/linux-embedded-hal) implementation.