forked from electricimp/examples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
example2.agent.nut
168 lines (139 loc) · 6.8 KB
/
example2.agent.nut
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
// -----------------------------------------------------------------------------
function constants() {
const html = @"
<!DOCTYPE html>
<HTML>
<HEAD>
<META charset='utf-8'>
<META http-equiv='X-UA-Compatible' content='IE=edge'>
<META name='viewport' content='width=device-width, initial-scale=1'>
<TITLE>Electric Imp Demo - Buttons and LED</TITLE>
<LINK href='https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.2.0/css/bootstrap.min.css' rel='stylesheet'>
</HEAD>
<BODY>
<DIV class='container text-center' style='width:320px;text-align: center;'>
<DIV class='page-header'>
<H1>Electric Imp</H1>
<H3>Buttons and LED</H3>
</DIV>
<DIV>
<div id='button-1-div' class='well well-sm'>Button 1: Loading</div>
<div id='button-2-div' class='well well-sm'>Button 2: Loading</div>
<button id='led' class='btn btn-default' style='width:100%' >LED</button>
</DIV>
</DIV>
<SCRIPT src='https://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.1/jquery.min.js'></SCRIPT>
<SCRIPT src='https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.2.0/js/bootstrap.min.js'></SCRIPT>
<SCRIPT>
$(function() {
// -------------------------------------------------------------
// Register event handlers for the on-screen buttons
$('#led').click(function() {
$.post('led', $(this).hasClass('btn-primary') ? '0' : '1');
})
// -------------------------------------------------------------
// Start a poller that never ends
var button1 = 'unknown', button2 = 'unknown', led = 'unknown';
function poll() {
// Poll the agent by posting the current status and waiting for a change
$.get('status')
// Handle a success response
.done(function(data) {
// Handle the button1 state
if ('button1' in data) {
button1 = data.button1;
if (button1 == 'up') {
$('div#button-1-div').text('Button 1: Up');
} else if (button1 == 'down') {
$('div#button-1-div').text('Button 1: Down');
} else {
$('div#button-1-div').text('Button 1: Unknown');
}
}
// Handle the button2 state
if ('button2' in data) {
button2 = data.button2;
if (button2 == 'up') {
$('div#button-2-div').text('Button 2: Up');
} else if (button2 == 'down') {
$('div#button-2-div').text('Button 2: Down');
} else {
$('div#button-2-div').text('Button 2: Unknown');
}
}
// Handle the LED state
if ('led' in data) {
led = data.led;
if (led == 'on') {
$('#led').addClass('btn-primary');
$('#led').removeClass('btn-default');
$('#led').removeAttr('disabled');
} else if (led == 'off') {
$('#led').removeClass('btn-primary');
$('#led').addClass('btn-default');
$('#led').removeAttr('disabled');
} else {
$('#led').attr('disabled', 'disabled');
}
}
})
// After successful or unsuccessful response, restart the poller
.always(function(obj) {
if ('status' in obj) {
// There was an error, back off for a bit
setTimeout(poll, 5000);
} else {
setTimeout(poll, 100);
}
});
}
// Start the poller, once.
poll();
})
</SCRIPT>
</BODY>
</HTML
";
}
// -----------------------------------------------------------------------------
// Register an HTTP request handler
http.onrequest(function(req, res) {
switch (req.path) {
// Handle the root request. Redirect to /view
case "/":
res.header("Location", http.agenturl() + "/view");
res.send(302, "Redirect");
break;
// On /view deliver the constant HTML page
case "/view":
res.send(200, html)
break;
// On /status immediately respond with the status
case "/status":
res.header("Content-Type", "application/json")
res.send(200, http.jsonencode({button1=button1, button2=button2, led=led}))
break;
// On /led change the value of the LED (turn it on or off)
case "/led":
device.send("led", req.body == "0")
res.send(200, "OK")
break;
// Handle anything else as an error
default:
res.send(404, "Unknown");
}
})
// -----------------------------------------------------------------------------
// Register button and led event handlers.
button1 <- "unknown";
device.on("button1", function(state) {
button1 = (state ? "down" : "up");
})
button2 <- "unknown";
device.on("button2", function(state) {
button2 = (state ? "down" : "up");
})
led <- "unknown";
device.on("led", function(state) {
led = (state ? "on" : "off");
})