Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- var ip ="";
- var root ="";
- $(document).ready(function(){
- ip = location.host;
- setInterval(function(){ myfunction(); }, 800);
- $("#btnRoot").click(function(){
- ip = location.host;
- root = "";
- root += "http://";
- root += ip;
- root += "/ligarLed?btnRoot=1";
- $.ajax({url: root, success: function(result){
- }});
- });
- $("#btnNode1").click(function(){
- ip = location.host;
- root = "";
- root += "http://";
- root += ip;
- root += "/ligarLed?btnNode1=1";
- $.ajax({url: root, success: function(result){
- }});
- });
- $("#btnNode2").click(function(){
- ip = location.host;
- root = "";
- root += "http://";
- root += ip;
- root += "/ligarLed?btnNode2=1";
- $.ajax({url: root, success: function(result){
- }});
- });
- $("#btnNode3").click(function(){
- ip = location.host;
- root = "";
- root += "http://";
- root += ip;
- root += "/ligarLed?btnNode3=1";
- $.ajax({url: root, success: function(result){
- }});
- });
- $("#btnNode4").click(function(){
- ip = location.host;
- root = "";
- root += "http://";
- root += ip;
- root += "/ligarLed?btnNode4=1";
- $.ajax({url: root, success: function(result){
- }});
- });
- $("#btnNode5").click(function(){
- ip = location.host;
- root = "";
- root += "http://";
- root += ip;
- root += "/ligarLed?btnNode5=1";
- $.ajax({url: root, success: function(result){
- }});
- });
- $("#btnNode6").click(function(){
- ip = location.host;
- root = "";
- root += "http://";
- root += ip;
- root += "/ligarLed?btnNode6=1";
- $.ajax({url: root, success: function(result){
- }});
- });
- });
- function myfunction(){
- ip = location.host;
- root = "";
- root += "http://";
- root += ip;
- root += "/teste";
- $.ajax({url: root, success: function(result){
- //------------------( dados botao btnRoot )-----------------
- var pacote;
- pacote = result.split("*");
- $("#debug").html(ip);
- $("#debug").append("<br>");
- $("#debug").append(pacote[0]);
- $("#debug").append("<br>");
- $("#debug").append(pacote[1]);
- $("#debug").append("<br>");
- $("#debug").append(pacote[2]);
- $("#debug").append("<br>");
- $("#debug").append(pacote[3]);
- $("#debug").append("<br>");
- $("#debug").append(pacote[4]);
- $("#debug").append("<br>");
- $("#debug").append(pacote[5]);
- $("#debug").append("<br>");
- $("#debug").append(pacote[6]);
- //-----------------( dados botao btnRoot )------------------
- var dados;
- dados = pacote[0].split("|");
- $("#tdEsp1Id") .html(dados[0]);
- $("#tdEsp1Mod").html(dados[1]);
- $("#tdEsp1Con").html(dados[2]);
- $("#tdEsp1Led").html(dados[4]);
- $("#tdEsp1Cnt").html(dados[5]);
- if(dados[4]=="0"){
- $("#btnRoot").prop("checked", false);
- }
- else{
- $("#btnRoot").prop("checked", true);
- }
- //-----------------( dados botao btnNode1 )-----------------
- dados = pacote[1].split("|");
- $("#tdEsp2Id") .html(dados[0]);
- $("#tdEsp2Mod").html(dados[1]);
- $("#tdEsp2Con").html(dados[2]);
- $("#tdEsp2Led").html(dados[4]);
- $("#tdEsp2Cnt").html(dados[5]);
- if(dados[4]=="0"){
- $("#btnNode1").prop("checked", false);
- }
- else{
- $("#btnNode1").prop("checked", true);
- }
- //-----------------( dados botao btnNode2 )-----------------
- dados = pacote[2].split("|");
- $("#tdEsp3Id") .html(dados[0]);
- $("#tdEsp3Mod").html(dados[1]);
- $("#tdEsp3Con").html(dados[2]);
- $("#tdEsp3Led").html(dados[4]);
- $("#tdEsp3Cnt").html(dados[5]);
- if(dados[4]=="0"){
- $("#btnNode2").prop("checked", false);
- }
- else{
- $("#btnNode2").prop("checked", true);
- }
- //-----------------( dados botao btnNode3 )-----------------
- dados = pacote[3].split("|");
- $("#tdEsp4Id") .html(dados[0]);
- $("#tdEsp4Mod").html(dados[1]);
- $("#tdEsp4Con").html(dados[2]);
- $("#tdEsp4Led").html(dados[4]);
- $("#tdEsp4Cnt").html(dados[5]);
- if(dados[4]=="0"){
- $("#btnNode3").prop("checked", false);
- }
- else{
- $("#btnNode3").prop("checked", true);
- }
- //-----------------( dados botao btnNode4 )-----------------
- dados = pacote[4].split("|");
- $("#tdEsp5Id") .html(dados[0]);
- $("#tdEsp5Mod").html(dados[1]);
- $("#tdEsp5Con").html(dados[2]);
- $("#tdEsp5Led").html(dados[4]);
- $("#tdEsp5Cnt").html(dados[5]);
- if(dados[4]=="0"){
- $("#btnNode4").prop("checked", false);
- }
- else{
- $("#btnNode4").prop("checked", true);
- }
- //-----------------( dados botao btnNode4 )-----------------
- dados = pacote[5].split("|");
- $("#tdEsp6Id") .html(dados[0]);
- $("#tdEsp6Mod").html(dados[1]);
- $("#tdEsp6Con").html(dados[2]);
- $("#tdEsp6Led").html(dados[4]);
- $("#tdEsp6Cnt").html(dados[5]);
- if(dados[4]=="0"){
- $("#btnNode5").prop("checked", false);
- }
- else{
- $("#btnNode5").prop("checked", true);
- }
- //-----------------( dados botao btnNode4 )-----------------
- dados = pacote[6].split("|");
- $("#tdEsp7Id") .html(dados[0]);
- $("#tdEsp7Mod").html(dados[1]);
- $("#tdEsp7Con").html(dados[2]);
- $("#tdEsp7Led").html(dados[4]);
- $("#tdEsp7Cnt").html(dados[5]);
- if(dados[4]=="0"){
- $("#btnNode6").prop("checked", false);
- }
- else{
- $("#btnNode6").prop("checked", true);
- }
- }});
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement