0.1.3 • Published 10 years ago

bmp180 v0.1.3

Weekly downloads
3
License
-
Repository
github
Last release
10 years ago

nitrogen-gpio-pin

This module allows you to use a GPIO pin in Nitrogen as a device.

How to use in your project

  1. Add 'nitrogen-gpio-pin' to your packages.json.
  2. Configure the pin you'd like to control:
var config = {
    pin: 4  
};
  1. Create a GPIO pin device:
var GPIOPin = require('nitrogen-gpio-pin');
var gpioPin = new GPIOPin(config); 
gpioPin.set(0, function() {
    // success
});
0.1.3

10 years ago