This package has been deprecated

Author message:

Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.

raspberrysensor

0.1.4 • Public • Published

raspberrysensor

Library for accessing various sensors via the bcm2835 library.

The first sensor which I have implemented is the AM2302, to see how this is attached to the Raspberry Pi take a look at my blog post Raspberry Pi Temperature and Humidity Project Construction

Once you have your sensor assembled and attached to the Raspberry Pi you can install node and try it out.

Getting Started

As this is a native node.js module you will first need to setup your pi with the necessary tools.

Firstly install build essential and git.

sudo apt-get build-essential

Then download node and build it.

wget https://github.com/joyent/node/archive/v0.8.16.tar.gz
tar cvzf v0.8.16.tar.gz
cd node-0.8.16
./configure
sudo make install

Download and install the bcm2835 library.

wget http://www.open.com.au/mikem/bcm2835/bcm2835-1.14.tar.gz
cd bcm2835-1.14
./configure
sudo make install

Now Install the module with: npm install raspberrysensor

var raspberrysensor = require('raspberrysensor');
 
raspberrysensor.humidity(function(err, result){
  console.log(JSON.stringify(result));
});

This will output something like.

{"humidity_integral":52,"humidity_decimal":1,"temperature_integral":23,"temperature_decimal":7}

Contributing

In lieu of a formal styleguide, take care to maintain the existing coding style. Add unit tests for any new or changed functionality. Lint and test your code using grunt.

Release History

0.1.0 Initial release.

0.1.1 Fixed documentation.

License

Copyright (c) 2012 Mark Wolfe
Licensed under the MIT license.

Readme

Keywords

none

Package Sidebar

Install

npm i raspberrysensor

Weekly Downloads

4

Version

0.1.4

License

none

Last publish

Collaborators

  • wolfeidau