Next

    1. SHT10移植到协议栈就不可以了 4/13793 RF/无线 2016-01-11
      描述不太清楚。。 sht10读取数据的延迟时间有点长
    2. 打包带走:)。。谢谢楼主无私奉献哈
    3. 如果温度刷新的话,可以参考websocket的demo 例如下面就是一个使用websocket实现的在线温湿度和加速度监测demo,就是不知为啥在谷歌浏览器上工作得好好的,火狐就是死活不认账,已连接上就自动断开。。
    4. oob例程里有ajax的js类,使用这个可以很方便的刷新呀:) 使用方式也很很方便:         $(document).ready(function(){         updateLedStatus();         $("button_led1_on").click(function{              setLed('1', 'on');         });         $("button_led1_off").click(function{              setLed('1', 'off');         });         ........     });         function updateLedStatus(){             updatePoll = new com.TI.tokenPoller({                 "paramPage": "param_led.html",                 "refreshRate": 1 * 1000,    // every second                 "valueMap": [{                 "paramId": "led1_state",                     "outputSuccess": function(output) {                         $('#light1').html("状态:" + output);                     },                     "outputDefault": function() {                         $('#light1').html("重新载入");                     }                 },                 {                 "paramId": "led2_state",                     "outputSuccess": function(output) {                         $('#light2').html("状态:" + output);                     },                     "outputDefault": function() {                         $('#light2').html("重新载入");                     }                 },                 {                 "paramId": "led3_state",                     "outputSuccess": function(output) {                         $('#light3').html("状态:" + output);                     },                     "outputDefault": function() {                         $('#light3').html("重新载入");                     }                 }]             });         }         function toggleSwitch(led, status){             var lightSwitch = "#lightSwitch" + led;             if (status == "on") {                 $(lightSwitch).attr("backgroundPosition", "0 0");             } else {                 $(lightSwitch).attr("backgroundPosition", "0 -72px");             }         }         function setLed(led, status) {             if((led == "1" || led == "2" || led == "3") &&                 (status == "on" || status == "off")){                 var params = "LED" + led;                 if(status == "on")                     params += "_ON";                 else                     params += "_OFF"                 $.post("No_content", {"__SL_P_ULD" : params});                 toggleSwitch(led, status);             }         }     请求的参数param_led.html文件: __SL_G_UL1 __SL_G_UL2 __SL_G_UL3
    5. mark...

最近访客

< 1/1 >

统计信息

已有4人来访过

  • 芯积分:--
  • 好友:--
  • 主题:--
  • 回复:5

留言

你需要登录后才可以留言 登录 | 注册


现在还没有留言