Correct typos and errors in README
This commit is contained in:
parent
9043362769
commit
fa26ceb117
|
@ -69,7 +69,7 @@ robot.start()
|
||||||
##### JavaScript:
|
##### JavaScript:
|
||||||
|
|
||||||
```javascript
|
```javascript
|
||||||
var Cylon = require('../..');
|
var Cylon = require('cylon');
|
||||||
|
|
||||||
Cylon.robot({
|
Cylon.robot({
|
||||||
connection: { name: 'ardrone', adaptor: 'ardrone', port: '192.168.1.1' },
|
connection: { name: 'ardrone', adaptor: 'ardrone', port: '192.168.1.1' },
|
||||||
|
@ -85,7 +85,7 @@ Cylon.robot({
|
||||||
##### CoffeeScript:
|
##### CoffeeScript:
|
||||||
|
|
||||||
```javascript
|
```javascript
|
||||||
Cylon = require '../..'
|
Cylon = require 'cylon'
|
||||||
|
|
||||||
Cylon.robot
|
Cylon.robot
|
||||||
connection: { name: 'ardrone', adaptor: 'ardrone', port: '192.168.1.1' }
|
connection: { name: 'ardrone', adaptor: 'ardrone', port: '192.168.1.1' }
|
||||||
|
@ -117,7 +117,7 @@ Cylon.js has a extensible system for connecting to hardware devices. The followi
|
||||||
- [Sphero](http://www.gosphero.com/) <==> [Adaptor/Driver](https://github.com/hybridgroup/cylon-sphero)
|
- [Sphero](http://www.gosphero.com/) <==> [Adaptor/Driver](https://github.com/hybridgroup/cylon-sphero)
|
||||||
|
|
||||||
Support for many devices that use General Purpose Input/Output (GPIO) have
|
Support for many devices that use General Purpose Input/Output (GPIO) have
|
||||||
a shared set of drivers provded using the cylon-gpio module:
|
a shared set of drivers provided using the cylon-gpio module:
|
||||||
|
|
||||||
- [GPIO](https://en.wikipedia.org/wiki/General_Purpose_Input/Output) <=> [Drivers](https://github.com/hybridgroup/cylon-gpio)
|
- [GPIO](https://en.wikipedia.org/wiki/General_Purpose_Input/Output) <=> [Drivers](https://github.com/hybridgroup/cylon-gpio)
|
||||||
- Analog Sensor
|
- Analog Sensor
|
||||||
|
@ -129,7 +129,7 @@ a shared set of drivers provded using the cylon-gpio module:
|
||||||
- Servo
|
- Servo
|
||||||
|
|
||||||
Support for devices that use Inter-Integrated Circuit (I2C) have a shared set of
|
Support for devices that use Inter-Integrated Circuit (I2C) have a shared set of
|
||||||
drivers provded using the cylon-i2c module:
|
drivers provided using the cylon-i2c module:
|
||||||
|
|
||||||
- [I2C](https://en.wikipedia.org/wiki/I%C2%B2C) <=> [Drivers](https://github.com/hybridgroup/cylon-i2c)
|
- [I2C](https://en.wikipedia.org/wiki/I%C2%B2C) <=> [Drivers](https://github.com/hybridgroup/cylon-i2c)
|
||||||
- BlinkM
|
- BlinkM
|
||||||
|
@ -210,7 +210,6 @@ Thank you!
|
||||||
* If you have local changes you may need to use “git stash”
|
* If you have local changes you may need to use “git stash”
|
||||||
* For git help see [progit](http://git-scm.com/book) which is an awesome (and free) book on git
|
* For git help see [progit](http://git-scm.com/book) which is an awesome (and free) book on git
|
||||||
|
|
||||||
|
|
||||||
## Release History
|
## Release History
|
||||||
|
|
||||||
[![NPM](https://nodei.co/npm/cylon.png?compact=true)](https://nodei.co/npm/cylon/)
|
[![NPM](https://nodei.co/npm/cylon.png?compact=true)](https://nodei.co/npm/cylon/)
|
||||||
|
|
Loading…
Reference in New Issue