https://github.com/nebrius/raspi-gpio
Provides access to GPIO on the Raspberry Pi from Node.js
https://github.com/nebrius/raspi-gpio
Last synced: 10 months ago
JSON representation
Provides access to GPIO on the Raspberry Pi from Node.js
- Host: GitHub
- URL: https://github.com/nebrius/raspi-gpio
- Owner: nebrius
- License: mit
- Created: 2014-11-03T06:23:37.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2019-10-05T18:13:13.000Z (almost 7 years ago)
- Last Synced: 2025-08-17T09:39:26.212Z (11 months ago)
- Language: TypeScript
- Size: 102 KB
- Stars: 53
- Watchers: 4
- Forks: 8
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
Raspi GPIO
==========
[](https://gitter.im/nebrius/raspi-io?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
Raspi GPIO is part of the [Raspi.js suite of libraries](https://github.com/nebrius/raspi) that provides access to the hardware GPIO pins on a Raspberry Pi.
If you have a bug report, feature request, or wish to contribute code, please be sure to check out the [Raspi IO Contributing Guide](https://github.com/nebrius/raspi-io/blob/master/CONTRIBUTING.md).
## System Requirements
- Raspberry Pi Model B Rev 1 or newer (sorry Model A users)
- Raspbian Jessie or newer
- [Node-RED](http://nodered.org/) works, but can be finicky and difficult to debug.
- See https://github.com/nebrius/raspi-io/issues/24 for more info about support for other OSes
- Node 6.4.0 or newer
Detailed instructions for getting a Raspberry Pi ready for NodeBots, including how to install Node.js, can be found in the [wiki](https://github.com/nebrius/raspi-io/wiki/Getting-a-Raspberry-Pi-ready-for-NodeBots)
## Installation
First, be sure that you have installed [Raspi.js](https://github.com/nebrius/raspi).
Install with npm:
```Shell
npm install raspi-gpio
```
**Note:** this project is written in [TypeScript](http://www.typescriptlang.org/) and includes type definitions in the package.json file. This means that if you want to use it from TypeScript, you don't need to install a separate @types module.
## Example Usage
In TypeScript/ES6:
```TypeScript
import { init } from 'raspi';
import { DigitalInput, DigitalOutput, PULL_UP } from 'raspi-gpio';
init(() => {
const input = new DigitalInput({
pin: 'P1-3',
pullResistor: PULL_UP
});
const output = new DigitalOutput('P1-5');
output.write(input.read());
});
```
In JavaScript:
```JavaScript
const raspi = require('raspi');
const gpio = require('raspi-gpio');
raspi.init(() => {
const input = new gpio.DigitalInput({
pin: 'P1-3',
pullResistor: gpio.PULL_UP
});
const output = new gpio.DigitalOutput('P1-5');
output.write(input.read());
});
```
## Pin Naming
The pins on the Raspberry Pi are a little complicated. There are multiple headers on some Raspberry Pis with extra pins, and the pin numbers are not consistent between Raspberry Pi board versions.
To help make it easier, you can specify pins in three ways. The first is to specify the pin by function, e.g. ```'GPIO18'```. The second way is to specify by pin number, which is specified in the form "P[header]-[pin]", e.g. ```'P1-7'```. The final way is specify the [Wiring Pi virtual pin number](http://wiringpi.com/pins/), e.g. ```7```. If you specify a number instead of a string, it is assumed to be a Wiring Pi number.
Be sure to read the [full list of pins](https://github.com/nebrius/raspi-io/wiki/Pin-Information) on the supported models of the Raspberry Pi.
## API
### Module Constants
Constant
Description
LOW
A logic low value, one of the two possible return values from digital reads and arguments to digital writes
HIGH
A logic high value, one of the two possible return values from digital reads and arguments to digital writes
PULL_NONE
Do not use a pull up or pull down resistor with a pin, one of the three possible values for the pullResistor in the pin configuration object.
PULL_DOWN
Use the internal pull down resistor for a pin, one of the three possible values for the pullResistor in the pin configuration object.
PULL_UP
Use the internal pull up resistor for a pin, one of the three possible values for the pullResistor in the pin configuration object.
module
An easily consumable object for indirectly passing this module around. Intended specifically for use by Core IO (details coming soon)
Property
Type
Description
PULL_NONE
Constant
Alias of PULL_NONE module export.
PULL_DOWN
Constant
Alias of PULL_DOWN module export.
PULL_UP
Constant
Alias of PULL_UP module export.
createDigitaInput(config)
String | Number | Object
See the DigitalInput constructor for details
createDigitaOutput(config)
String | Number | Object
See the DigitalOutput constructor for details
### new DigitalInput(config)
Instantiates a new GPIO input instance.
_Arguments_:
Argument
Type
Description
config
Number | String | Object
The configuration for the GPIO pin. If the config is a number or string, it is assumed to be the pin number for the peripheral. If it is an object, the following properties are supported:
Property
Type
Description
pin
Number | String
The pin number or descriptor for the peripheral
pullResistor (optional)
PULL_NONE | PULL_DOWN | PULL_UP
Which internal pull resistor to enable, if any. Defaults to PULL_NONE
### DigitalInput Instance Properties
#### value (read-only)
The current value on the pin.
_Type:_ `LOW | HIGH`
### DigitalInput Instance Methods
#### read()
Reads the current value on the pin.
_Arguments_: None
_Returns_: `LOW` or `HIGH`
### DigitalInput Instance Events
#### on('change', function(value))
Fired whenever the value of the GPIO pin changes.
_Callback Arguments_:
Argument
Type
Description
value
LOW | HIGH
The current value of the GPIO pin.
### new DigitalOutput(config)
Instantiates a new GPIO output instance.
_Arguments_:
Argument
Type
Description
config
Number | String | Object
The configuration for the GPIO pin. If the config is a number or string, it is assumed to be the pin number for the peripheral. If it is an object, the following properties are supported:
Property
Type
Description
pin
Number | String
The pin number for the peripheral
pullResistor
PULL_NONE | PULL_DOWN | PULL_UP
Which internal pull resistor to enable, if any. Defaults to PULL_NONE
### DigitalOutput Instance Properties
#### value (read-only)
The current value on the pin, equal to the previous written value.
_Type:_ `LOW` | `HIGH`
### DigitalOutput Instance Methods
#### write(value)
Writes the given value to the pin.
_Arguments_:
Argument
Type
Description
value
LOW | HIGH
The value to write to the pin
_Returns_: None
### DigitalOutput Instance Events
#### on('change', function(value))
Fired whenever the value of the GPIO pin changes.
_Callback Arguments_:
Argument
Type
Description
value
LOW | HIGH
The current value of the GPIO pin.
License
=======
The MIT License (MIT)
Copyright (c) 2014-2017 Bryan Hughes
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.