# llwoll-gpio

> Cylon module for General Purpose Input/Output (GPIO)

Latest version **0.27.0** (published 2015-12-28) · Apache-2.0 license · 0 weekly downloads

## Install

```sh
npm install llwoll-gpio
pnpm add llwoll-gpio
yarn add llwoll-gpio
bun add llwoll-gpio
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support; pre 1.0.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.27.0 |
| Published | 2015-12-28 |
| First published | 2015-12-28 |
| Weekly downloads | 0 |
| License | Apache-2.0 |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 1 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 0 |
| Author | The Hybrid Group |
| Maintainers | llwoll |
| Keywords | cylon, cylonjs, cylons, robot, robots, robotics, iot, hardware, gpio |

## Links

- npm: https://www.npmjs.com/package/llwoll-gpio
- Repository: https://github.com/llwoll/cylon-gpio
- Homepage: http://cylonjs.com
- Issues: https://github.com/llwoll/cylon-gpio/issues
- npm.io page: https://npm.io/package/llwoll-gpio

## Dependencies (1)

- [cylon](https://npm.io/package/cylon.md) 1.2.0

## Recent versions

- 0.27.0 (latest) — 2015-12-28

## README

# Cylon.js For GPIO

Cylon.js (http://cylonjs.com) is a JavaScript framework for robotics, physical computing, and the Internet of Things (IoT).

This module provides drivers for General Purpose Input/Output (GPIO) devices (https://en.wikipedia.org/wiki/General_Purpose_Input/Output). It is normally not used directly, but instead is registered by adaptor modules such as cylon-firmata (https://github.com/hybridgroup/cylon-firmata) that support the needed interfaces for GPIO devices.

Want to use Ruby on robots? Check out our sister project Artoo (http://artoo.io)

Want to use the Go programming language to power your robots? Check out our sister project Gobot (http://gobot.io).

[![Build Status](https://secure.travis-ci.org/hybridgroup/cylon-gpio.png?branch=master)](http://travis-ci.org/hybridgroup/cylon-gpio) [![Code Climate](https://codeclimate.com/github/hybridgroup/cylon-gpio/badges/gpa.svg)](https://codeclimate.com/github/hybridgroup/cylon-gpio) [![Test Coverage](https://codeclimate.com/github/hybridgroup/cylon-gpio/badges/coverage.svg)](https://codeclimate.com/github/hybridgroup/cylon-gpio)

## Getting Started
Install the module with: `npm install cylon cylon-gpio`

## Example

```javascript
var Cylon = require('cylon');

// Initialize the robot
Cylon.robot({
  connections: {
    arduino: { adaptor: 'firmata', port: '/dev/ttyACM0' }
  },

  devices: {
    led: { driver: 'led', pin: 13 },
    button: { driver: 'button', pin: 2 }
  },

  work: function(my) {
    my.button.on('push', my.led.toggle);
  }
}).start();
```

## Hardware Support
Cylon.js has a extensible system for connecting to hardware devices. The following GPIO devices are currently supported:

  - Analog Sensor
  - Button
  - Continuous Servo
  - Direct Pin
  - IR Range Sensor
  - LED
  - Makey Button (high-resistance button like the [MakeyMakey](http://www.makeymakey.com/))
  - Maxbotix Ultrasonic Range Finder
  - Motor
  - Relay
  - RGB LED
  - Servo

More drivers are coming soon...

## Documentation
We're busy adding documentation to our web site at http://cylonjs.com/ please check there as we continue to work on Cylon.js

Thank you!

## Contributing

For our contribution guidelines, please go to [https://github.com/hybridgroup/cylon/blob/master/CONTRIBUTING.md
](https://github.com/hybridgroup/cylon/blob/master/CONTRIBUTING.md
).

## Release History

For the release history, please go to [https://github.com/hybridgroup/cylon-gpio/blob/master/RELEASES.md
](https://github.com/hybridgroup/cylon-gpio/blob/master/RELEASES.md
).

## License
Copyright (c) 2013-2015 The Hybrid Group. Licensed under the Apache 2.0 license.

---
_Source: https://npm.io/package/llwoll-gpio · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
