From 9b0dc692177cdc6d8fa7aad4949e5e7a0abb6399 Mon Sep 17 00:00:00 2001 From: Bernhard Tittelbach Date: Sat, 28 May 2016 02:53:04 +0200 Subject: bmp180 pressure sensor, just lacks arduino i2c-wire-lib and testing --- contrib/Makefile | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) (limited to 'contrib') diff --git a/contrib/Makefile b/contrib/Makefile index c0e6137..be93ef2 100644 --- a/contrib/Makefile +++ b/contrib/Makefile @@ -4,6 +4,7 @@ ## ## Copyright (C) 2013-2016 Christian Pointner ## 2013-2014 Othmar Gsenger +## 2016 Bernhard Tittelbach ## ## This file is part of spreadspace avr utils. ## @@ -23,8 +24,9 @@ LUFA_VERSION := 151115 FASTLED_VERSION := v3.1.0 +BMP180_VERSION := V_1.1.2 -all: download-lufa download-fastled update-pjon update-teensy-loader +all: download-lufa download-fastled update-pjon update-teensy-loader download-bmp180 download-lufa: LUFA-${LUFA_VERSION}.zip @@ -38,6 +40,12 @@ FastLED-${FASTLED_VERSION}.zip: wget "https://github.com/FastLED/FastLED/archive/${FASTLED_VERSION}.zip" -O "$@" unzip $@ +download-bmp180: BMP180-${BMP180_VERSION}.zip + +BMP180-${BMP180_VERSION}.zip: + wget "https://github.com/sparkfun/BMP180_Breakout_Arduino_Library/archive/${BMP180_VERSION}.zip" -O "$@" + unzip -j $@ -d BMP180-${BMP180_VERSION}/ \*/src/\* + .pjon.prepared: git clone https://github.com/gioblu/PJON.git touch $@ -- cgit v1.2.3