codecamp

getStatus

获取打印机连接状态

getStatus(callback)

callback

ret:

  • 类型:JSON
  • 描述:返回打印机状态

示例代码

var gprinter = api.require('xGprinter');
gprinter.getStatus(function(ret) {
    alert(JSON.stringify(ret));
});

补充说明

如果使用蓝牙连接方式,需手机打开蓝牙。目前只支持android系统。

可用性

Android系统

可提供的1.0.0及更高版本

printImage
startService
温馨提示
下载编程狮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; }