1.0.4 • Published 8 years ago

mc-gpio v1.0.4

Weekly downloads
1
License
ISC
Repository
github
Last release
8 years ago

A simple library for accessing the RaspberryPI GPIO pins.

Example:

var gpio = require('mc-gpio');

gpio.openPin(0, "out", function(err, data) {
  if (err) {
    // Handle error
  } else {
    gpio.write(0, 1, function(err, data) {
      if (err) {
        // Handle error
      } else {
        // Everything is fine and the pin is open and on.
      }
    }
  }
});
1.0.4

8 years ago

1.0.3

8 years ago

1.0.2

8 years ago

1.0.1

8 years ago

1.0.0

8 years ago