(fork from rakeshpai/pi-gpio.)
tinker-gpio is a simple node.js based library to help access the GPIO of the ASUS Tinker Board (Debian Jessie). It's modelled loosely around the built-in fs
module.
It works with:
- ASUS Tinker Board
var gpio = require("tinker-gpio");
gpio.open(16, "output", function(err) { // Open pin 16 for output
gpio.write(16, 1, function() { // Set pin 16 high (1)
gpio.close(16); // Close pin 16
});
});
Ways you can help:
- Review the pull requests and test them on a Pi for correctness.
- Report Bugs.
- Fix a bug or add something awesome, Send a pull request.
This couldn't have been more confusing. Tinker Board's physical pins are not laid out in any particular logical order. Most of them are given the names of the pins of the Rockchip chip it uses (rk3288). There isn't even a logical relationship between the physical layout of the Tinker Board pin header and the Rockchip chip's pinout. The OS recognizes the names of the Rockchip chip and has nothing to do with the physical pin layout on the Tinker. To add to the fun, the specs for the Rockchip chip are nearly impossible to get!
This library simplifies all of this (hopefully), by abstracting away the Rockchip chip details. You only need to refer to the pins as they are on the physical pin layout on the Tinker Board. For your reference, the pin layout follows. All the pins marked "GPIO" can be used with this library, using pin numbers as below.
P1 - 3.3v | 1 | 2 | 5v |
I2C SDA | 3 | 4 | -- |
I2C SCL | 5 | 6 | Ground |
GPIO | 7 | 8 | TX |
-- | 9 | 10 | RX |
GPIO | 11 | 12 | GPIO |
GPIO | 13 | 14 | -- |
GPIO | 15 | 16 | GPIO |
-- | 17 | 18 | GPIO |
SPI MOSI | 19 | 20 | -- |
SPI MISO | 21 | 22 | GPIO |
SPI SCLK | 23 | 24 | SPI CE0 |
-- | 25 | 26 | SPI CE1 |
Model A+ and Model B+ additional pins | |||
ID_SD | 27 | 28 | ID_SC |
GPIO | 29 | 30 | -- |
GPIO | 31 | 32 | GPIO |
GPIO | 33 | 34 | -- |
GPIO | 35 | 36 | GPIO |
GPIO | 37 | 38 | GPIO |
-- | 39 | 40 | GPIO |
That gives you several GPIO pins to play with: pins 7, 11, 12, 13, 15, 16, 18 and 22 (with A+ and B+ giving 29, 31, 32, 33, 35, 37, 38 and 40). You should provide these physical pin numbers to this library, and not bother with what they are called internally. Easy-peasy.
If you haven't already, get node and npm on the Pi. The simplest way is:
sudo apt-get install nodejs npm
The Tinker Board's GPIO pins require you to be root to access them. That's totally unsafe for several reasons. To get around this problem, you should use the excellent GPIO_API_for_C.
Do the following on your Tinker Board:
wget http://dlcdnet.asus.com/pub/ASUS/mb/Linux/Tinker_Board_2GB/GPIO_API_for_C.zip
unzip GPIO_API_for_C.zip
cd GPIO_API_for_C/
sudo chmod +x build
sudo ./build
Next, cd
to your project directory and use npm to install tinker-gpio in your project.
npm install tinker-gpio
That's it!
Aliased to .export
Makes pinNumber
available for use.
pinNumber
: The pin number to make available. Remember,pinNumber
is the physical pin number on the Tinker.options
: (Optional) Should be a string, such asinput
orinput pullup
. You can specify whether the pin direction should beinput
oroutput
(orin
orout
). You can additionally set the internal pullup / pulldown resistor by sepcifyingpullup
orpulldown
(orup
ordown
). If options isn't provided, it defaults tooutput
. If a direction (input
oroutput
) is not specified (eg. onlyup
), then the direction defaults tooutput
.callback
: (Optional) Will be called when the pin is available for use. May receive an error as the first argument if something went wrong.
Aliased to .unexport
Closes pinNumber
.
pinNumber
: The pin number to close. Again,pinNumber
is the physical pin number on the Tinker.callback
: (Optional) Will be called when the pin is closed. Again, may receive an error as the first argument.
Changes the direction from input
to output
or vice-versa.
pinNumber
: As usual.direction
: Eitherinput
orin
oroutput
orout
.callback
: Will be called when direction change is complete. May receive an error as usual.
Gets the direction of the pin. Acts like a getter for the method above.
pinNumber
: As usualcallback
: Will be called when the direction is received. The first argument could be an error. The second argument will either bein
orout
.
Reads the current value of the pin. Most useful if the pin is in the input
direction.
pinNumber
: As usual.callback
: Will receive a possible error object as the first argument, and the value of the pin as the second argument. The value will be either0
or1
(numeric).
Example:
gpio.read(16, function(err, value) {
if(err) throw err;
console.log(value); // The current state of the pin
});
Writes value
to pinNumber
. Will obviously fail if the pin is not in the output
direction.
pinNumber
: As usual.value
: Should be either a numeric0
or1
. Any value that isn't0
or1
will be coerced to be boolean, and then converted to 0 (false) or 1 (true). Just stick to sending a numeric 0 or 1, will you? ;)callback
: Will be called when the value is set. Again, might receive an error.
- To run tests:
npm install && npm test
where you've got the checkout. - This module was created,
git push
'ed andnpm publish
'ed all from the Tinker Board! The Tinker rocks!
- Support for I2C and SPI (though it should already be possible to bit-bang the SPI protocol).
- Any other suggestions?
(The MIT License)
Copyright (c) 2012 Rakesh Pai rakeshpai@gmail.com
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.