codecamp

sendCommand

配置成功之后发送指令

sendCommand({params}, callback(ret))

params

ip:

  • 类型:字符串
  • 描述:(可选项)ip地址

port:

  • 类型:字符串
  • 描述:(可选项)端口

sendStr:

  • 类型:字符串
  • 描述:根据硬件要求传参数,发送的命令。

callback(ret)

ret:

  • 类型:JSON 对象
  • 内部字段:

{
   isSuc: '',     //bool类型;是否发送指令成功,true:成功  false:失败
   result: ''     //字符串类型;成功返回结果(例如:cmd=pong&host_ip=xxxx&device_id=xxx)
}

示例代码

var smartConfigCheyw = api.require('smartConfigCheyw');
smartConfigCheyw.sendCommand({
    sendStr: 'cmd=ping\r\n'
}, function(ret) {
    if (ret) {
        alert(JSON.stringify(ret));
    }
});

可用性

iOS系统,Android系统

可提供的1.0.0及更高版本

startConfirm
startScan
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

端API

设备访问

ipAddress

wifiSSID

smartConfigCheyw

无标题文章

前端框架

云API

开发工具

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }