-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstreambot.js
107 lines (96 loc) · 2.73 KB
/
streambot.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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
//twitter API and serialport
var Twit = require('twit'),
config = require('./local_config'),
serial = require('serialport'),
alphabet = ' QRSTUVWXYZ',
alphabetArray = alphabet.split(''),
T = new Twit(config);
// serial.list(function (err, ports) {
// ports.forEach(function(port) {
// console.log(port.comName);
// console.log(port.pnpId);
// console.log(port.manufacturer);
// });
// });
// search for the following
var query = {
track: 'strangerlights' //change this for the word of your choice, the bot is going to look for it
}
///LOCAL TESTING
var port = new serial('/dev/cu.Telenax-COM1', {
baudRate: 115200
});
// function sendA(){
// port.write(' B');
// console.log("Escribi A");
// }
// port.on('open', function() {
// setTimeout(sendA(), 5000)
// });
//
port.on('open', function() {
sendChars = setInterval(function(){
if (!alphabetArray.length) {
clearInterval(sendChars);
}
port.write(alphabetArray[0], function(err) {
if (err) {
return console.log('Error on write: ', err.message);
}
console.log(alphabetArray[0]);
alphabetArray.shift();
});
}, 2500)
});
// init stream
// var stream = T.stream('statuses/filter', query)
//
// stream.on('tweet', function (tweet) {
// var tweeText = tweet.text.toUpperCase(),
// regexp = new RegExp('#([^\\s]*)', 'g'),
// tweeTextReplace = tweeText.replace(regexp, ' '),
// tweetArray = tweeTextReplace.split(''),
// alphabet = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ ',
// alphabetArray = alphabet.split(''),
// serialTweet = [];
//
// function checkTweet(tweetArray, alphabet){
// for(var i=0; i < tweetArray.length; i++){
// if(alphabet.indexOf(tweetArray[i]) > -1) {
// serialTweet.push(tweetArray[i])
// }
// }
// console.log(serialTweet);
//
// var port = new serial('/dev/cu.Telenax-COM1', {
// baudRate: 115200
// });
//
// port.on('open', function() {
// // sendChars = setInterval(function(){
// // if (!serialTweet.length) {
// // clearInterval(sendChars);
// // }
// // port.write(serialTweet[0], function(err) {
// // if (err) {
// // return console.log('Error on write: ', err.message);
// // }
// // console.log(serialTweet[0]);
// // serialTweet.shift();
// // });
// // }, 2000)
// var a = 'A';
//
// setTimeout(function () {
// port.write(a);
// console.log(a);
// }, 5000)
//
//
//
// });
// };
//
// checkTweet(tweetArray, alphabetArray)
//
// });