-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathapp.js
More file actions
288 lines (233 loc) · 6.38 KB
/
app.js
File metadata and controls
288 lines (233 loc) · 6.38 KB
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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
var events = require('events');
var eventEmitter = new events.EventEmitter();
var endHandler = function restart() {
console.log("Inside handler!!!!");
run();
}
eventEmitter.on('ended', endHandler);
/*------------------------------------------------------------------------------
PUBNUB, BABY
-------------------------------------------------------------------------------*/
var pubnub = require("pubnub")({
ssl : true, // <- enable TLS Tunneling over TCP
publish_key : "pub-c-c4775583-2521-4e1f-b853-cdb74ae25cb3",
subscribe_key : "sub-c-9dbe6968-0995-11e6-8c3e-0619f8945a4f"
});
/* ---------------------------------------------------------------------------
Publish Messages
--------------------------------------------------------------------------- */
var message = { "Hello" : "World!" };
pubnub.publish({
channel : 'PTDS_channel',
message : message,
callback : function(e) { console.log( "SUCCESS!", e ); },
error : function(e) { console.log( "FAILED! RETRY PUBLISH!", e ); }
});
/* ---------------------------------------------------------------------------
Listen for Messages
--------------------------------------------------------------------------- */
pubnub.subscribe({
channel : "PTDS_channel",
callback : function(message) {
console.log( " > ", message );
interpretMessage(message);
}
});
/*---------------------------------------------------------------------------------
EDISON, BABY
-------------------------------------------------------------------------------------*/
var mraa = require('mraa');
// PIN SETUP**********************************************
var redLed = new mraa.Gpio(2);
redLed.dir(mraa.DIR_OUT);
redLed.write(1);
var greenLed = new mraa.Gpio(4);
greenLed.dir(mraa.DIR_OUT);
greenLed.write(1);
var buzzer = new mraa.Gpio(8);
buzzer.dir(mraa.DIR_OUT);
buzzer.write(0);
var forceRes = new mraa.Aio(0);
// LOGIC/CONTROL VARS*********************************************
var armed = false;
var stolen = false;
var nobreak = true;
var newWeight = forceRes.read();
var lastWeight = forceRes.read();
var lastTime = new Date();
var newTime = new Date();
var checkWeight = false;
var weightViolation = false;
//arm();
//armed = true;
disarm();
function loop() {
while(nobreak) {
run();
}
}
//while (1) {
//run();
//}
function run() {
if (armed && !stolen) {
monitorPackage();
}
else if (!armed && !stolen) {
//waitForArm();
}
else if (armed && stolen) {
}
};
// CONTROL FUNCTIONS******************************************
function waitForArm() {
console.log("waiting for arm...");
// This function could be empty for the same desired effect, but this ensures
// nothing happens until edwin is armed
while(!armed) {}
arm();
};
function waitForDisarm() {
console.log("waiting for disarm...");
while(armed) {}
disarm();
};
function monitorPackage() {
checkTheft();
if (stolen) {
triggerAlarm();
}
};
function checkTheft() {
if ((newTime - lastTime) > 750 || weightViolation) {
newWeight = forceRes.read();
console.log("checking for theft " + newWeight);
if (!weightViolation && (lastWeight - newWeight) > ((1024 - lastWeight)*.25)) {
console.log("potential violation!!!!!!!!!!!!!!!!!!!!");
weightViolation = true;
lastTime = new Date();
}
else if (weightViolation) {
newTime = new Date();
if ((newTime - lastTime) > 1250) { // in milliseconds
// check if there's still a weight violation
if ((lastWeight - newWeight) > ((1024 - lastWeight)*.1)) {
stolen = true;
//triggerAlarm();
}
else {
weightViolation = false;
}
}
}
else {
//if ((newWeight - lastWeight) > ((1024 - lastWeight)*.25)) {
// publishDelivered();
//}
lastTime = new Date();
lastWeight = newWeight;
}
}
if (!weightViolation) {
newTime = new Date();
}
else {
}
};
function triggerAlarm() {
console.log("Triggering alarm!");
buzzerOn();
//waitForDisarm();
//buzzerOff();
nobreak = false;
publishStolen();
};
function arm() {
console.log("arming...");
armed = true;
redOn();
greenOff();
stolen = false;
loop();
publishArmed();
};
function disarm() {
console.log("disarming...");
armed = false;
stolen = false;
greenOn();
redOff();
buzzerOff();
publishDisarmed();
};
//PUBNUB CONTROL FUNCTIONS**********************************
function interpretMessage(mess) {
console.log("Received PubNub Message: " + mess);
switch (mess) {
case 'app:edwinArm' : arm();
break;
case 'app:edwinDisarm' : disarm();
break;
default :
//something is wrong here
console.log("Nothing initated");
break;
}
};
// HELPER FUNCTIONS****************************************
function redOn() {
redLed.write(1);
};
function greenOn() {
greenLed.write(1);
};
function buzzerOn() {
buzzer.write(1);
};
function redOff() {
redLed.write(0);
};
function greenOff() {
greenLed.write(0);
};
function buzzerOff() {
buzzer.write(0);
};
function publishArmed() {
var armedyo = "edwin:armed";
pubnub.publish({
channel : 'PTDS_channel',
message : armedyo,
callback : function(e) { console.log( "SUCCESS!", e ); },
error : function(e) { console.log( "FAILED! RETRY PUBLISH!", e ); }
});
};
function publishDisarmed() {
var armedyo = "edwin:disarmed";
pubnub.publish({
channel : 'PTDS_channel',
message : armedyo,
callback : function(e) { console.log( "SUCCESS!", e ); },
error : function(e) { console.log( "FAILED! RETRY PUBLISH!", e ); }
});
};
function publishStolen() {
var armedyo = "edwin:stolen";
pubnub.publish({
channel : 'PTDS_channel',
message : armedyo,
callback : function(e) { console.log( "SUCCESS!", e ); },
error : function(e) { console.log( "FAILED! RETRY PUBLISH!", e ); }
});
};
function publishDelivered() {
var armedyo = "edwin:delivered";
pubnub.publish({
channel : 'PTDS_channel',
message : armedyo,
callback : function(e) { console.log( "SUCCESS!", e ); },
error : function(e) { console.log( "FAILED! RETRY PUBLISH!", e ); }
});
};
//***************************RESTART CALLBACK HOMIE***************************
//eventEmitter.emit('ended');