New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

node-wiringpi

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

node-wiringpi

Node bindings for libwiringPi

latest
Source
npmnpm
Version
0.0.1
Version published
Maintainers
1
Created
Source

node-wiringpi

Extremely simple node wrapper for @drogon's wiringPi library (for blinky lights & gpio w/ RaspberryPi)

Caution

This package assumes you know how to safely handle electronics and program GPIO pins. It's concievable you could damage yourself or your Raspberry Pi with improper circuit design or improper use of software interfaces. While the author of this package has made reasonable efforts to insure the accuracy of the information and code contained within, it comes with absolutely no warranty or guarantee of correctness.

Pre-Requisites

Before installing and/or building this package, please make sure you have the wiringPi library and the node-gyp package installed. WiringPi info can be found at https://projects.drogon.net/raspberry-pi/wiringpi/. Node-Gyp info can be found at https://github.com/TooTallNate/node-gyp.

Installation

The easiest way to install this package is via npm:

    npm install node-wiringpi

Or, you can check out the source using git:

    git clone git://github.com/OhMeadhbh/node-wiringpi.git

Building

If the package wasn't automagically built when you installed via npm, this command should do the trick:

    node-gyp configure build

You'll have problems if you haven't installed node-gyp or libwiringPi.

Testing

I wrote a very simple LED blinker (this assumes you have a RPi w/ LEDs attached to GPIO pins. To run the program, use the command:

    sudo node blinkin.js

You have to run the program as root so it has permission to access /dev/mem. You could modify the permissions on this file, but please don't do that unless you understand how big of a security hole you're creating.

API

We currently only support two wiringPi calls: pinMode() and digitalWrite(). Hopefully the only thing you wanted to do was to write to the GPIO ports.

Start off by requiring the package:

    var wpi = require( 'node-wiringpi' );

If you're curious, you can call the num_pins() function to find out how many GPIO pins you have:

    console.log( "you have " + wpi.num_pins() + " GPIO pins." );

Before you write to GPIO lines, you should set them in output mode. This snippit sets pins 0 and 1 into output mode:

    wpi.pin_mode( 0, wpi.PIN_MODE.OUTPUT );
    wpi.pin_mode( 1, wpi.PIN_MODE.OUTPUT );

Once in output mode, you can write HIGH or LOW values to the pin. This sequence turns pins 0 and 1 on and off:

    wpi.digital_write( 0, wpi.WRITE.LOW );
    wpi.digital_write( 1, wpi.WRITE.LOW );
    wpi.digital_write( 0, wpi.WRITE.HIGH );
    wpi.digital_write( 1, wpi.WRITE.HIGH );

FAQs

Package last updated on 29 Dec 2012

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts