
This is a link to the Autelis module http://www.autelis.com/universal-rs232- ... e-isy.html
I have it eavesdroping on the com line with the x-bee wireless and it picks out the bytes I need to send to ISY from the PIC/PINK
Hi Mike,
I can give you an example BUT won't be able to help you with debugging, You will need to either understand HTTP protocol specification OR ask NetBurner for an HTTP client library. You have to send the following packet on your TCP connection
POST /rest/vars/set/2/2/75 HTTP/1.1\r\n
Host: ISY IP:ISY Port\r\n
Authorization: Basic YWRtaW46YWRtaW4=\r\n (Base64 of usrename=password ... so if username = admin and password is admin, use Base64(admin=admin) which will give you what you see there)
Content-Type: text/xml; charset="utf-8"\r\n
\r\n
With kind regards,
Michel
UDI Tech Support
Universal Devices Inc.
Hi mike2545,
Thanks for the update.
Whatever Autelis can do you can do from within PINK.
With kind regards,
Michel
UDI Tech Support
Universal Devices Inc.
Code: Select all
<script>
var timeout;
function bloop(){
$.ajax({
url: "/ajax.html",
success:function(result){
var array=result.split(',');
for(i=0;i<array.length;i++){
$("input[name='Nb_var"+array[i].substring(0,array[i].indexOf(':'))+"']").val(array[i].substring(array[i].indexOf(':')+1));
Code: Select all
}
}});
timeout = window.setTimeout(function(){bloop()}, 4000);
}
</script>
Code: Select all
01:<Nb_var01>,02:<Nb_var02>,11:<Nb_var11>,12:<Nb_var12>,21:<Nb_var21>