forked from marcoschwartz/aREST_UI
-
Notifications
You must be signed in to change notification settings - Fork 0
/
aREST_UI.h
410 lines (337 loc) · 11.4 KB
/
aREST_UI.h
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
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
/*
aREST UI for Arduino & the ESP8266
See the README file for more details.
Written in 2015 by Marco Schwartz under a GPL license.
Version 1.0.1
Changelog:
Version 1.0.1: Initial release with buttons only
*/
#ifndef aRest_ui_h
#define aRest_ui_h
// Include Arduino header
#include "Arduino.h"
// Using ESP8266 ?
#if defined(ESP8266)
#include "stdlib_noniso.h"
#endif
class aREST_UI: public aREST {
public:
aREST_UI() {
}
typedef struct {
String function_name;
String description;
} function_button_t;
typedef enum {
TYPE_BUTTON=0,
TYPE_FUNCTION_BUTTON,
TYPE_FUNCTION_WITH_INPUT_BUTTON,
TYPE_SLIDER,
TYPE_VARIABLE_LABEL,
TYPE_LABEL
} ui_type_t;
// Get title
void title(String the_title) {
ui_title = the_title;
}
// Create button
void button(int pin){
// Set pin as output
pinMode(pin,OUTPUT);
// Set in button array
buttons[buttons_index] = pin;
buttons_index++;
// Set in the ui_order_list
ui_order_list[ui_order_index] = TYPE_BUTTON;
ui_order_index++;
}
// Create function button
void function_button(char *function_name, char *description, int (*f)(String)){
// Setup function
aREST::function(function_name, f);
// Set in function button array
function_buttons[function_buttons_index].function_name = String(function_name);
function_buttons[function_buttons_index].description = String(description);
function_buttons_index++;
// Set in the ui_order_list
ui_order_list[ui_order_index] = TYPE_FUNCTION_BUTTON;
ui_order_index++;
}
// Create function button
void function_with_input_button(char *function_name, char *description, int (*f)(String)){
// Setup function
aREST::function(function_name, f);
// Set in function with input button array
func_with_input_buttons[func_with_input_buttons_index].function_name = String(function_name);
func_with_input_buttons[func_with_input_buttons_index].description = String(description);
func_with_input_buttons_index++;
// Set in the ui_order_list
ui_order_list[ui_order_index] = TYPE_FUNCTION_WITH_INPUT_BUTTON;
ui_order_index++;
}
void slider(int pin) {
// Set pin as output
pinMode(pin,OUTPUT);
// Set in button array
sliders[sliders_index] = pin;
sliders_index++;
// Set in the ui_order_list
ui_order_list[ui_order_index] = TYPE_SLIDER;
ui_order_index++;
}
void variable_label(char *variable_name, char *label_text, int *var){
// Initialize var
aREST::variable(variable_name, var);
variable_label_add(variable_name, label_text);
}
// Float variables (Mega & ESP only, or without CC3000)
#if defined(__AVR_ATmega1280__) || defined(__AVR_ATmega2560__) || defined(ESP8266) || defined(CORE_WILDFIRE) || !defined(ADAFRUIT_CC3000_H)
void variable_label(char *variable_name, char *label_text, float *var){
// Initialize variable
aREST::variable(variable_name, var);
variable_label_add(variable_name, label_text);
}
#endif
// String variables (Mega & ESP only, or without CC3000)
#if defined(__AVR_ATmega1280__) || defined(__AVR_ATmega2560__) || defined(ESP8266) || defined(CORE_WILDFIRE) || !defined(ADAFRUIT_CC3000_H)
void variable_label(char *variable_name, char *label_text, String *var){
// Initialize var
aREST::variable(variable_name, var);
variable_label_add(variable_name, label_text);
}
#endif
// Create variable label
void variable_label_add(char *variable_name, char *label_text){
var_labels_names[var_labels_index] = variable_name;
var_labels_text[var_labels_index] = label_text;
var_labels_index++;
// Set in the ui_order_list
ui_order_list[ui_order_index] = TYPE_VARIABLE_LABEL;
ui_order_index++;
}
// Create label
void label(char *label_text, bool small_text=false){
labels_text[labels_index] = label_text;
labels_text_should_be_small[labels_index] = small_text;
labels_index++;
// Set in the ui_order_list
ui_order_list[ui_order_index] = TYPE_LABEL;
ui_order_index++;
}
void add_next_button() {
addToBuffer("<div class=\"row\">");
addToBuffer("<div class=\"col-md-2\"><button class=\"btn btn-block btn-lg btn-primary\" id='btn_on");
addToBuffer(buttons[current_buttons_index]);
addToBuffer("'>On</button></div>");
addToBuffer("<div class=\"col-md-2\"><button class=\"btn btn-block btn-lg btn-danger\" id='btn_off");
addToBuffer(buttons[current_buttons_index]);
addToBuffer("'>Off</button></div>");
addToBuffer("</div>");
current_buttons_index++;
}
void add_next_function_button() {
addToBuffer("<div class=\"row\">");
addToBuffer("<div class=\"col-md-2\"><button class=\"btn btn-block btn-lg btn-primary\" id='func_btn");
addToBuffer(current_function_buttons_index);
addToBuffer("'>");
addToBuffer(function_buttons[current_function_buttons_index].description);
addToBuffer("</button></div>");
addToBuffer("</div>");
current_function_buttons_index++;
}
void add_next_function_with_input_button() {
addToBuffer("<div class=\"row\">");
addToBuffer("<div class=\"col-md-2\"><input type='text' id='func_with_input_text");
addToBuffer(current_func_with_input_buttons_index);
addToBuffer("'/></div>");
addToBuffer("<div class=\"col-md-2\"><button class=\"btn btn-block btn-lg btn-primary\" id='func_with_input_btn");
addToBuffer(current_func_with_input_buttons_index);
addToBuffer("'>");
addToBuffer(func_with_input_buttons[current_func_with_input_buttons_index].description);
addToBuffer("</button></div>");
addToBuffer("</div>");
current_func_with_input_buttons_index++;
}
void add_next_slider() {
addToBuffer("<div class=\"row\">");
#if defined(ESP8266)
addToBuffer("<div class=\"col-md-2\"><input type='range' value='0' max='1023' min='0' step='5' id='slider");
#else
addToBuffer("<div class=\"col-md-2\"><input type='range' value='0' max='255' min='0' step='5' id='slider");
#endif
addToBuffer(sliders[current_sliders_index]);
addToBuffer("'></div>");
addToBuffer("</div>");
current_sliders_index++;
}
void add_next_variable_label() {
addToBuffer("<div class=\"row\">");
addToBuffer("<div class='col-md-4 indicator'>");
addToBuffer(var_labels_text[current_var_labels_index]);
addToBuffer(": </div>");
addToBuffer("<div class='col-md-4 indicator' id='");
addToBuffer(var_labels_names[current_var_labels_index]);
addToBuffer("'></div>");
addToBuffer("</div>");
current_var_labels_index++;
}
void add_next_label() {
if (labels_text_should_be_small[current_labels_index])
{
addToBuffer("<div>");
addToBuffer("<div class='col-md-10 smalltext'>");
}
else
{
addToBuffer("<div class=\"row\">");
addToBuffer("<div class='col-md-10 indicator'>");
}
addToBuffer(labels_text[current_labels_index]);
addToBuffer("</div>");
addToBuffer("</div>");
current_labels_index++;
}
void reset_current_indices() {
current_buttons_index = 0;
current_function_buttons_index = 0;
current_func_with_input_buttons_index = 0;
current_sliders_index = 0;
current_var_labels_index = 0;
current_labels_index = 0;
}
// Handle connection
virtual void root_answer() {
// Answer
addToBuffer("HTTP/1.1 200 OK\r\nContent-Type: text/html\r\n\r\n");
addToBuffer("<html><head>");
addToBuffer("<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\">");
addToBuffer("<script ");
addToBuffer("src=\"http://code.jquery.com/jquery-2.1.3.min.js\">");
addToBuffer("</script>");
addToBuffer("<script type='text/javascript' src='http://cdn.rawgit.com/Foliotek/AjaxQ/master/ajaxq.js'></script>");
addToBuffer("<style>.row {margin-top: 30px;} .indicator {font-size: 30px; vertical-align: middle;} .smalltext {font-size: 15px; margin-top: 5px; margin-bottom: 15px;}</style>");
addToBuffer("<link rel=\"stylesheet\" href=\"https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/css/bootstrap.min.css\">");
addToBuffer("</head><body>");
addToBuffer("<div class=\"container\">");
// Title
if (ui_title.length() != 0) {
addToBuffer("<h1>");
addToBuffer(ui_title);
addToBuffer("</h1>");
}
else {
addToBuffer("<h1>Interface</h1>");
}
reset_current_indices();
// Add all UI elements in order they were added
for (int i = 0; i < ui_order_index; i++) {
switch (ui_order_list[i]) {
case TYPE_BUTTON:
add_next_button();
break;
case TYPE_FUNCTION_BUTTON:
add_next_function_button();
break;
case TYPE_FUNCTION_WITH_INPUT_BUTTON:
add_next_function_with_input_button();
break;
case TYPE_SLIDER:
add_next_slider();
break;
case TYPE_VARIABLE_LABEL:
add_next_variable_label();
break;
case TYPE_LABEL:
add_next_label();
break;
}
}
addToBuffer("</div>");
addToBuffer("<script>$( document ).ready(function() {");
// Buttons JavaScript
for (int i = 0; i < buttons_index; i++) {
addToBuffer("$('#btn_on");
addToBuffer(buttons[i]);
addToBuffer("').click(function() {$.getq('queue','/digital/");
addToBuffer(buttons[i]);
addToBuffer("/1');});");
addToBuffer("$('#btn_off");
addToBuffer(buttons[i]);
addToBuffer("').click(function() {$.getq('queue','/digital/");
addToBuffer(buttons[i]);
addToBuffer("/0');});");
}
// Function Buttons JavaScript
for (int i = 0; i < function_buttons_index; i++) {
addToBuffer("$('#func_btn");
addToBuffer(i);
addToBuffer("').click(function() {$.getq('queue','/");
addToBuffer(function_buttons[i].function_name);
addToBuffer("');});");
}
// Function With Input Buttons JavaScript
for (int i = 0; i < func_with_input_buttons_index; i++) {
addToBuffer("$('#func_with_input_btn");
addToBuffer(i);
addToBuffer("').click(function() {var text = document.getElementById(\"func_with_input_text");
addToBuffer(i);
addToBuffer("\").value; $.getq('queue','/");
addToBuffer(func_with_input_buttons[i].function_name);
addToBuffer("?params=' + text); });");
}
// Sliders JavaScript
for (int i = 0; i < sliders_index; i++) {
addToBuffer("$('#slider");
addToBuffer(sliders[i]);
addToBuffer("').mouseup(function() {var val = $('#slider");
addToBuffer(sliders[i]);
addToBuffer("').val(); $.getq('queue','/analog/");
addToBuffer(sliders[i]);
addToBuffer("/' + val); });");
}
// Variable Labels JavaScript
for (int j = 0; j < var_labels_index; j++) {
addToBuffer("$.getq('queue','/");
addToBuffer(var_labels_names[j]);
addToBuffer("', function(data) { $('#");
addToBuffer(var_labels_names[j]);
addToBuffer("').html(data.");
addToBuffer(var_labels_names[j]);
addToBuffer("); });");
}
addToBuffer("});</script>");
addToBuffer("</body></html>\r\n");
}
private:
// UI title
String ui_title;
// Buttons array
int buttons[10];
int buttons_index;
int current_buttons_index;
// Function Buttons array
function_button_t function_buttons[10];
int function_buttons_index;
int current_function_buttons_index;
// Function With Input Buttons array
function_button_t func_with_input_buttons[10];
int func_with_input_buttons_index;
int current_func_with_input_buttons_index;
// Buttons array
int sliders[10];
int sliders_index;
int current_sliders_index;
// Variable Labels array
uint8_t var_labels_index;
uint8_t current_var_labels_index;
char * var_labels_names[10];
char * var_labels_text[10];
// Labels array
uint8_t labels_index;
uint8_t current_labels_index;
char * labels_text[10];
bool labels_text_should_be_small[10];
ui_type_t ui_order_list[30];
int ui_order_index;
};
#endif