UNPKG
johnny-five-electron
Version:
latest (0.9.1)
0.9.1
0.9.0
0.8.94
0.8.93
0.8.92
Temporary fork to support Electron (to be deprecated)
johnny-five.io
aessig/johnny-five
johnny-five-electron
/
eg
/
tinkerkit-continuous-servo.js
13 lines
(10 loc)
•
262 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
var
five =
require
(
"../lib/johnny-five.js"
);
new
five.
Board
().
on
(
"ready"
,
function
(
) {
var
servo =
new
five.
Servo
({
pin
:
"O0"
,
type
:
"continuous"
});
new
five.
Sensor
(
"I0"
).
scale
(
0
,
1
).
on
(
"change"
,
function
(
) { servo.
cw
(
this
.
value
); }); });