-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
36 lines (27 loc) · 966 Bytes
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
const five = require("johnny-five");
const board = new five.Board();
let potentiometer;
board.on("ready", function() {
// Creates a new `led` instance configured in pin 9
var led = new five.Led(9);
// Create a new `potentiometer` hardware instance.
potentiometer = new five.Sensor({
pin: "A0",
freq: 250
});
// Inject the `sensor` hardware into
// the Repl instance's context;
// allows direct command line access
board.repl.inject({
pot: potentiometer
});
// "data" get the current reading from the potentiometer
potentiometer.on("change", function(value) {
// map the potentiometer scale (0-1023) with the led scale (0-255)
var brightValue = five.Fn.constrain(five.Fn.map(value, 0, 1023, 0, 255), 0, 255);
var percentValue = five.Fn.constrain(five.Fn.map(brightValue, 0, 255, 0, 100), 0, 100);
console.log(`> Led Brightness: ${percentValue}%`);
// 0 - 255
led.brightness(brightValue);
});
});