0.1.4 • Published 2 years ago

nodary-encoder v0.1.4

Weekly downloads
11
License
MIT
Repository
github
Last release
2 years ago

nodary-encoder

Based off https://github.com/nstansby/rpi-rotary-encoder-python & https://github.com/pichfl/onoff-rotary: event-based NodeJS lib that relies on https://github.com/fivdi/onoff to get rotary encoder (such as https://thepihut.com/products/rotary-encoder-extras) data from GPIO pins on Raspberry Pi.

Installation

npm i nodary-encoder --save

Usage

const nodaryEncoder = require('nodary-encoder');
const myEncoder = nodaryEncoder(17, 18); // Using GPIO17 & GPIO18

myEncoder.on('rotation', (direction, value) => {
  if (direction == 'R') {
    console.log('Encoder rotated right');
  } else {
    console.log('Encoder rotated left');
  }

  console.log('Value is', value);
});