Netduino home hardware projects downloads community

Jump to content


The Netduino forums have been replaced by new forums at community.wildernesslabs.co. This site has been preserved for archival purposes only and the ability to make new accounts or posts has been turned off.
Photo

How can I capture the response from netduino plus?


  • Please log in to reply
No replies to this topic

#1 n0rx0r

n0rx0r

    New Member

  • Members
  • Pip
  • 3 posts

Posted 09 May 2011 - 05:00 AM

I used the code here : Link
But I cannot display the response from netduino in ConsumeNetduino.html. Please help, i am really new in jQuery and Ajax.
Thank You

Here is the code from the html file:
<html>
<head>
<link rel="stylesheet" href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.3/themes/base/jquery-ui.css" type="text/css" media="all" />
<link rel="stylesheet" href="http://static.jquery.com/ui/css/demo-docs-theme/ui.theme.css" type="text/css" media="all" />
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js" type="text/javascript"></script>
<script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.3/jquery-ui.min.js" type="text/javascript"></script>

<script>
	$(function() {
		$( "#button1" ).button().click(buttonOn);
		$( "#button2" ).button().click(buttonOff);
	});

function NetRequest(cmd, param1, param2)
{
  urlStr = "http://192.168.7.9/" + cmd + "/" + param1;
  if (param2 != undefined) urlStr += "/" + param2;
  //alert(urlStr);

$.getJSON(
            urlStr,
            //function (result) { alert(result); alert(result.message); }
            function (result) { alert(result.message); }
        );
/*
$.ajax({
  url: urlStr,
  success: function() { alert("success"); },
  complete: function(XMLHttpRequest, textStatus) { completeProc(XMLHttpRequest.responseText) },
  error: function(XMLHttpRequest, textStatus, errorThrown) { alert("Error"); },
  dataType: 'html'
});
*/

}

function completeProc(responseText)
{
  alert("in completeProc: '" + responseText + "'");
  $("#response").html( responseText );
}

function buttonOn()
{
    NetRequest("led", 1, 0);
}

function buttonOff()
{
    NetRequest("led", 0, 0);
}
</script>

</head>
<body>
<p><button id="button1">On</button> <button id="button2">Off</button></p>
<div id="response"></div>
</body>
</html>





0 user(s) are reading this topic

0 members, 0 guests, 0 anonymous users

home    hardware    projects    downloads    community    where to buy    contact Copyright © 2016 Wilderness Labs Inc.  |  Legal   |   CC BY-SA
This webpage is licensed under a Creative Commons Attribution-ShareAlike License.