Skip to content

Commit

Permalink
Merge pull request dbridges#5 from TizenTeam/sandbox/rzr/devel/review…
Browse files Browse the repository at this point in the history
…/master

minor changes for version 0.0.5
  • Loading branch information
dbridges authored Aug 16, 2018
2 parents 98e7976 + 6688b0f commit 9621e60
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 4 deletions.
9 changes: 9 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@

Access a [BMP085](http://www.bosch-sensortec.com/en/homepage/products_3/environmental_sensors_1/bmp085_1/bmp085) temperature & barometric pressure sensor from your Raspberry Pi using Node.js.


[![NPM](https://nodei.co/npm/bmp085-sensor.png)](https://npmjs.org/package/bmp085-sensor)

### Install

```
Expand Down Expand Up @@ -54,3 +57,9 @@ sensor.calibrate(function (err, data) {
});
});
```

### Resources

* https://www.npmjs.com/package/bmp085-sensor
* https://github.com/dbridges/bmp085-sensor
* https://www.openhub.net/p/bmp085-sensor
File renamed without changes.
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
{
"name": "bmp085-sensor",
"version": "0.0.4",
"version": "0.0.5",
"description": "A module to interface a BMP085 temperature and pressure sensor to the raspberry pi.",
"main": "index.js",
"main": "bmp085-sensor.js",
"dependencies": {
"i2c" : "*",
"async": "~0.2.9"
},
"devDependencies": {},
"scripts": {
"test": "node test"
"test": "NODE_PATH=. node test"
},
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion test.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
var BMP085 = require('./index.js');
var BMP085 = require('bmp085-sensor');

var sensor = BMP085();

Expand Down

0 comments on commit 9621e60

Please sign in to comment.