UNPKG
cylon-chip
Version:
latest (0.3.0)
0.3.0
0.2.0
0.1.0
Cylon.js adaptor for the C.H.I.P. single-board computer
cylonjs.com
hybridgroup/cylon-beaglebone
cylon-chip
/
index.js
15 lines
(10 loc)
•
274 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
"use strict"
;
var
Adaptor
=
require
(
"./lib/adaptor"
);
module
.
exports
= {
adaptors
: [
"chip"
],
// Modules intended to be used with yours, e.g. ["cylon-gpio"]
dependencies
: [
"cylon-gpio"
,
"cylon-i2c"
],
adaptor
:
function
(
opts
) {
return
new
Adaptor
(opts); } };