Skip to content

Reads DHT series of temperature sensors on a Beaglebone Black.

License

Notifications You must be signed in to change notification settings

ChadLefort/beaglebone-dht

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

beaglebone-dht

Build Status

Reads DHT series of temperature sensors on a Beaglebone Black.

Setup

npm install beaglebone-dht --save

Example

var dht = require('beaglebone-dht'),
    sensor = dht.sensor('DHT22'),
    read = dht.read('P9_15');

console.log(read);

/**
{
    celsius: 21.899999618530273,
    fahrenheit: 71.4199993133545,
    humidity: 53
}
**/

Run Tests

npm test

Supported Sensors

  • DHT11
  • DHT22
  • AM2302

GPIO Pins

The read function will take a couple of different GPIO variations as an accepted parameter.

It will take in the following:

  • Head Pin
  • Any name that doesn't start already with GPIO
  • GPIO Number

Please refer to the wonderful PDF documents provided by Derek Molloy for reference:

Credits

About

Reads DHT series of temperature sensors on a Beaglebone Black.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published