{'outlet1':'on' , 'outlet2':'off' , 'outlet3':'on'}
[http://192.168.2.200:5555/getJsonData.json][1] in "Outlet1" provision on the value read out from the android buttons in the switch to the "ON" and "OFF" values can be inflicted.
{'outlet1':'on' , 'outlet2':'off' , 'outlet3':'on'}
[http://192.168.2.200:5555/getJsonData.json][1] in "Outlet1" provision on the value read out from the android buttons in the switch to the "ON" and "OFF" values can be inflicted.
You can read json easily follow this tutorial when its come to writing it's easy to generate and upload json but you need to commit it from serverside using a simple service
I also want to do the following operation android :
<script> function updateControls() { $.getJSON('/status.json', function (json) { $.each(json, function (key, value) { $('#' + key).val(value).slider('refresh'); }); }); } $('select').on('change', function (event) { element = event.target.id; if (element.substr(0, 6) == 'outlet') { eleid = element.substr(6, 2); } else { eleid = 0; } command = event.target.value; $.get('/cmd', { 'eleid': eleid, 'cmd': command }); }); $(document).ready(function () { updateControls(); }); </script>