forked from platformio/platformio-core
79 lines
1.2 KiB
Arduino
79 lines
1.2 KiB
Arduino
|
|
const char headerEndP[] PROGMEM =
|
||
|
|
"<meta name='viewport' content='width=device-width, initial-scale=1'>\
|
||
|
|
<link rel='stylesheet' href='http://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/css/bootstrap.min.css'>\
|
||
|
|
<script src='https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js'></script>\
|
||
|
|
<script src='http://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/js/bootstrap.min.js'></script></head>";
|
||
|
|
|
||
|
|
void setup() {
|
||
|
|
|
||
|
|
}
|
||
|
|
|
||
|
|
const char javaScriptPinControlP[] PROGMEM =
|
||
|
|
"<div id='content'></div>\
|
||
|
|
<div id='pin1'></div>\
|
||
|
|
<script>\
|
||
|
|
function show()\
|
||
|
|
{\
|
||
|
|
$.ajax({\
|
||
|
|
url: 'controlstatus',\
|
||
|
|
cache: false,\
|
||
|
|
success: function(html){\
|
||
|
|
$('#content').html(html);\
|
||
|
|
}\
|
||
|
|
});\
|
||
|
|
}\
|
||
|
|
function Pin1()\
|
||
|
|
{\
|
||
|
|
$.ajax({\
|
||
|
|
type: 'POST',\
|
||
|
|
url: 'control',\
|
||
|
|
data: '1=1',\
|
||
|
|
success: function(data){\
|
||
|
|
show();\
|
||
|
|
}\
|
||
|
|
});\
|
||
|
|
}\
|
||
|
|
function Auto1()\
|
||
|
|
{\
|
||
|
|
$.ajax({\
|
||
|
|
type: 'POST',\
|
||
|
|
url: 'control',\
|
||
|
|
data: '1=2',\
|
||
|
|
success: function(data){\
|
||
|
|
show();\
|
||
|
|
}\
|
||
|
|
});\
|
||
|
|
}\
|
||
|
|
function Pin2()\
|
||
|
|
{\
|
||
|
|
$.ajax({\
|
||
|
|
type: 'POST',\
|
||
|
|
url: 'control',\
|
||
|
|
data: '2=1',\
|
||
|
|
success: function(data){\
|
||
|
|
show();\
|
||
|
|
}\
|
||
|
|
});\
|
||
|
|
}\
|
||
|
|
function Auto2()\
|
||
|
|
{\
|
||
|
|
$.ajax({\
|
||
|
|
type: 'POST',\
|
||
|
|
url: 'control',\
|
||
|
|
data: '2=2',\
|
||
|
|
success: function(data){\
|
||
|
|
show();\
|
||
|
|
}\
|
||
|
|
});\
|
||
|
|
}\
|
||
|
|
$(document).ready(function(){\
|
||
|
|
show();\
|
||
|
|
setInterval('show()',5000);\
|
||
|
|
});\
|
||
|
|
</script>";
|
||
|
|
|
||
|
|
#warning "Line 75"
|
||
|
|
|
||
|
|
void loop() {
|
||
|
|
|
||
|
|
}
|