Skip to content
This repository was archived by the owner on Jan 21, 2020. It is now read-only.

Latest commit

 

History

History
20 lines (16 loc) · 478 Bytes

File metadata and controls

20 lines (16 loc) · 478 Bytes

pinhead

pinhead

listen to changes on raspberry pi pins

pinhead(config)

config supports these properties:

  • pin (pin number to listen to)
  • interval (poll rate)
  • delay (time to wait between broadcasting changes)

example usage

var pinhead = require('pinhead');
var pin22 = pinhead({
  pin: 22
});

pin22.on('change', function (val) {
  console.log('the pin value changed to', val);
});