Skip to content

Commit 4543f49

Browse files
committed
init file commit
1 parent 119646e commit 4543f49

8 files changed

+254
-0
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
node_modules/

package.json

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
{
2+
"name": "arduino",
3+
"version": "1.0.0",
4+
"description": "",
5+
"main": "index.js",
6+
"scripts": {
7+
"test": "echo \"Error: no test specified\" && exit 1"
8+
},
9+
"author": "",
10+
"license": "ISC",
11+
"dependencies": {
12+
"bufferutil": "1.2.1",
13+
"onoff": "^1.0.3",
14+
"plotly": "^1.0.5",
15+
"serialport": "^2.0.5",
16+
"utf-8-validate": "1.2.1",
17+
"ws": "1.1.1"
18+
}
19+
}

sensors.js

+112
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,112 @@
1+
var GPIO = require('onoff').Gpio;
2+
var serialport = require('serialport'),
3+
plotly = require('plotly')('revmecha','cyuheqx155'),
4+
token = '786yfy9ilv';
5+
6+
var pir_sensor = new GPIO(17, 'in', 'both');
7+
var audio_sensor = new GPIO(27, 'in', 'both');
8+
9+
console.log("running...");
10+
function exit() {
11+
pir_sensor.unexport();
12+
console.log("exiting.");
13+
audio_sensor.unexport();
14+
process.exit();
15+
}
16+
17+
18+
19+
20+
var portName = '/dev/dev/ttyACM0';
21+
var sp = new serialport.SerialPort(portName,{
22+
baudRate: 9600,
23+
dataBits: 8,
24+
parity: 'none',
25+
stopBits: 1,
26+
flowControl: false,
27+
parser: serialport.parsers.readline("\r\n")
28+
});
29+
30+
// helper function to get a nicely formatted date string
31+
function getDateString() {
32+
var time = new Date().getTime();
33+
// 32400000 is (GMT+9 Japan)
34+
// for your timezone just multiply +/-GMT by 36000000
35+
var datestr = new Date(time +32400000).toISOString().replace(/T/, ' ').replace(/Z/, '');
36+
return datestr;
37+
}
38+
39+
var initdata = [{x:[], y:[], stream:{token:token, maxpoints: 500}}];
40+
var initlayout = {fileopt : "extend", filename : "sensor-test"};
41+
42+
var stream;
43+
44+
function streamData(input) {
45+
var streamObject = JSON.stringify({ x : getDateString(), y : input });
46+
console.log(streamObject);
47+
stream.write(streamObject+'\n');
48+
}
49+
50+
plotly.plot(initdata, initlayout, function (err, msg) {
51+
if (err) return console.log(err)
52+
53+
console.log(msg);
54+
stream = plotly.stream(token, function (err, res) {
55+
console.log(err, res);
56+
});
57+
58+
sp.on('data', function(input) {
59+
if(isNaN(input) || input > 1023) return;
60+
61+
streamData(input);
62+
63+
// var streamObject = JSON.stringify({ x : getDateString(), y : input });
64+
// console.log(streamObject);
65+
// stream.write(streamObject+'\n');
66+
});
67+
});
68+
69+
70+
// define the callback function
71+
function pirState(err, state) {
72+
73+
if (err) {
74+
console.log("err: " + err);
75+
throw err;
76+
}
77+
if(state == 1) {
78+
// turn LED on
79+
console.log("PIR detected");
80+
streamData(state);
81+
//led1.writeSync(1);
82+
} else {
83+
// turn LED off
84+
//console.log("PIR off");
85+
//led1.writeSync(0);
86+
}
87+
}
88+
function audioState(err, state) {
89+
90+
if (err) {
91+
console.log("err: " + err);
92+
throw err;
93+
}
94+
if(state == 1) {
95+
// turn LED on
96+
console.log("audio detected");
97+
//elapsedTime();
98+
streamData(state);
99+
//led2.writeSync(1);
100+
} else {
101+
// turn LED off
102+
//console.log("audio off");
103+
//led2.writeSync(0);
104+
}
105+
}
106+
107+
// pass the callback function to the
108+
// as the first argument to watch()
109+
pir_sensor.watch(pirState);
110+
audio_sensor.watch(audioState);
111+
process.on('SIGINT', exit);
112+

server.js

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
2+
var serialport = require('serialport');
3+
var arduino = {};
4+
5+
arduino.connect = function (e) {
6+
var portName = '/dev/ttyACM0';
7+
var sp = new serialport.SerialPort(portName, {
8+
baudRate: 115200, //9600,
9+
dataBits: 8,
10+
parity: 'none',
11+
stopBits: 1,
12+
flowControl: false,
13+
parser: serialport.parsers.readline("\r\n")
14+
});
15+
16+
sp.on('data', function(input) {
17+
18+
var ttype = input.substr(0,1);
19+
var value = input.substr(1);
20+
21+
console.log("input", input);
22+
});
23+
}
24+
25+
module.exports = arduino;

server1.js

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
var serialport = require('serialport');
2+
var portName = '/dev/ttyACM0';
3+
var sp = new serialport.SerialPort(portName, {
4+
baudRate: 9600,
5+
dataBits: 8,
6+
parity: 'none',
7+
stopBits: 1,
8+
flowControl: false,
9+
parser: serialport.parsers.readline("\r\n")
10+
});
11+
12+
sp.on('data', function(input) {
13+
console.log(input);
14+
});
15+

server2.js

+43
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
var serialport = require('serialport'),
2+
plotly = require('plotly')('revmecha','cyuheqx155'),
3+
token = '786yfy9ilv';
4+
5+
var portName = '/dev/ttyACM0';
6+
var sp = new serialport.SerialPort(portName,{
7+
baudRate: 9600,
8+
dataBits: 8,
9+
parity: 'none',
10+
stopBits: 1,
11+
flowControl: false,
12+
parser: serialport.parsers.readline("\r\n")
13+
});
14+
15+
// helper function to get a nicely formatted date string
16+
function getDateString() {
17+
var time = new Date().getTime();
18+
// 32400000 is (GMT+9 Japan)
19+
// for your timezone just multiply +/-GMT by 36000000
20+
var datestr = new Date(time +32400000).toISOString().replace(/T/, ' ').replace(/Z/, '');
21+
return datestr;
22+
}
23+
24+
var initdata = [{x:[], y:[], stream:{token:token, maxpoints: 500}}];
25+
var initlayout = {fileopt : "extend", filename : "sensor-test"};
26+
27+
plotly.plot(initdata, initlayout, function (err, msg) {
28+
if (err) return console.log(err)
29+
30+
console.log(msg);
31+
var stream = plotly.stream(token, function (err, res) {
32+
console.log(err, res);
33+
});
34+
35+
sp.on('data', function(input) {
36+
if(isNaN(input) || input > 1023) return;
37+
38+
var streamObject = JSON.stringify({ x : getDateString(), y : input });
39+
console.log(streamObject);
40+
stream.write(streamObject+'\n');
41+
});
42+
});
43+

server_stub.js

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
var serialport = require('serialport');
2+
var portName = '/dev/ttyACM0';
3+
var sp = new serialport.SerialPort(portName, {
4+
baudRate: 115200,//9600,
5+
dataBits: 8,
6+
parity: 'none',
7+
stopBits: 1,
8+
flowControl: false,
9+
parser: serialport.parsers.readline("\r\n")
10+
});
11+
12+
sp.on('data', function(input) {
13+
console.log(input);
14+
});

server_stub.js.save

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
var serialport = require('serialport');
2+
var WebSocket = require('ws')
3+
, ws = new WebSocket('ws://www.host.com/path');
4+
ws.on('open', function() {
5+
ws.send('something');
6+
});
7+
ws.on('message', function(message) {
8+
console.log('received: %s', message);
9+
});
10+
11+
12+
13+
var portName = '/dev/ttyACM0';
14+
var sp = new serialport.SerialPort(portName, {
15+
baudRate: 115200,//9600,
16+
dataBits: 8,
17+
parity: 'none',
18+
stopBits: 1,
19+
flowControl: false,
20+
parser: serialport.parsers.readline("\r\n")
21+
});
22+
23+
sp.on('data', function(input) {
24+
console.log(input);
25+
});

0 commit comments

Comments
 (0)