0.1.5 • Published 10 years ago
ev3-js-color-sensor v0.1.5
color-sensor
use the ev3 color sensor
Installation
$ npm install ev3-js-color-sensorUsage
var ColorSensor = require('ev3-js-color-sensor')
ColorSensor(1).reflected // => 88
ColorSensor(1).color // => 7API
ColorSensor(port)
- port- number of the port that the color sensor is plugged in to.
Returns: instance of ColorSensor
.reflected
Gets the value of the reflected light intensity.
Returns: number between 0 and 100
.color
Gets the value of the color.
Returns: color value between 0 and 7
| number | color | 
|---|---|
| 0 | no color | 
| 1 | black | 
| 2 | blue | 
| 3 | green | 
| 4 | yellow | 
| 5 | red | 
| 6 | white | 
| 7 | brown | 
License
MIT