entercritical / dht-sensor

node.js module to read the DHT series of humidity and temperature sensors on a Raspberry Pi
MIT License
8 stars 1 forks source link

dht-sensor

node.js module to read the DHT series of humidity and temperature sensors on a Raspberry Pi 2.

Setup

$ npm install dht-sensor --save

Example

var dht = require('dht-sensor');
var current = dht.read(11, 18); // 11 : DHT11, 18 : BCM GPIO  

console.log(current.humidity);
console.log(current.temperature);

Reference

https://github.com/adafruit/Adafruit_Python_DHT