Page 354 - Tasarım Beceri Atölyeleri Öğretmen El Kitabı
P. 354
ws.onclose = null;
ws.onmessage = null;
ws = null;
update_view(0);
}
function ws_onmessage(e_msg)
{
e_msg = e_msg || window.event; // MessageEvent
console.log(e_msg.data);
update_view(parseFloat(e_msg.data));
}
function update_view(temp)
{
var canvas = document.getElementById(“remote”);
var ctx = canvas.getContext(“2d”);
var radius = 70;
var offset = 5;
var width = 45;
var height = 330;
346