nodeMessageBoard/board.html

114 lines
2.3 KiB
HTML
Raw Normal View History

2016-03-07 20:48:50 +00:00
<!DOCTYPE html>
<meta charset="UTF-8">
2016-03-07 20:14:16 +00:00
<html>
<head>
<link rel="stylesheet" href="http://code.jquery.com/ui/1.9.2/themes/base/jquery-ui.css" />
<style>
body {
margin: 0px;
padding: 0px;
}
#rData{
float:left;
margin-left:100px;
margin-right:auto;
width:470px;
}
#sData{
float: left;
margin-left:100px;
margin-right:auto;
width:470px;
}
h2{
text-align:center;
}
#myCanvas {
border: 2px dashed grey;
}
#btnHolder, #sliderTxt{
text-align:center;
}
</style>
2016-03-07 20:48:50 +00:00
<script src="http://code.jquery.com/jquery-1.8.3.js"></script>
2016-03-07 20:14:16 +00:00
<script src="http://code.jquery.com/ui/1.9.2/jquery-ui.js"></script>
<script src="/socket.io/socket.io.js"></script>
<script>
var iosocket;
var pollOneH = 0;
var poll1;
var text;
var potValue;
var prevPotValue;
//var onOff = false;
var toggleVal = 0;
function initSocketIO()
{
iosocket = io.connect();
iosocket.on('onconnection', function(value) {
pollOneH = value.pollOneValue/2; // recieve start poll value from server
initButton();
// recieve changed values by other client from server
2016-03-07 20:48:50 +00:00
iosocket.on('updateData', function(recievedData) {
2016-03-07 20:14:16 +00:00
pollOneH = recievedData.pollOneValue/2; // recieve start poll value from server
});
2016-03-07 20:48:50 +00:00
iosocket.on('newMessage', function(message) {
var date = new Date();
var mainTable = document.getElementById("mainTable");
var newRow = mainTable.insertRow(mainTable.rows.length);
var dateCell = newRow.insertCell(0);
var textCell = newRow.insertCell(1);
dateCell.innerHTML = date.toLocaleString();
textCell.innerHTML = message;
2016-03-07 20:14:16 +00:00
});
2016-03-07 20:48:50 +00:00
});
2016-03-07 20:14:16 +00:00
}
function initButton()
{
$( "#check" ).button();
}
window.onload = function() {
initSocketIO();
};
2016-03-07 20:48:50 +00:00
$(document).ready(function() {
2016-03-07 20:14:16 +00:00
$('#check').click(function() {
toggleVal += 1;
toggleVal %= 2;
2016-03-07 20:48:50 +00:00
iosocket.emit('sendAT',toggleVal);
2016-03-07 20:14:16 +00:00
});
});
</script>
</head>
<body>
<div id="rData">
2016-03-07 20:48:50 +00:00
<h2>Data from Sim900</h2>
<table id="mainTable" border="1">
<tr>
<td>Uhrzeit</td><td>Nachricht</td>
</tr>
</table>
2016-03-07 20:14:16 +00:00
</div>
<div id="sData">
2016-03-07 20:48:50 +00:00
<h2>Debug functions</h2>
2016-03-07 20:14:16 +00:00
<div id="btnHolder">
<input type="checkbox" id="check" value="toggle"/><label for="check">Toggle LED</label>
</div>
<p id="sliderTxt">LED Dimmer</p>
<div id="slider"></div>
</div>
</body>
</html>