钉钉连接蓝牙打印条形码流程



1,首先判断手机是否开启蓝牙和定位,如未开启,提示用户开启。

2,搜索时间设为8秒,如未搜索到,提示用户无可用设备。(一旦开启搜索,则会一直进行搜索,要调用停止搜索事件才会停止)

3,如果搜索到设备,则进行连接,连接成功后停止搜索设备,并将设备连接状态置为true。

4,打印时,如果连接状态为true,直接打印,否则重新搜索及连接。

5,打印时,需要判断设备为安卓还是ios,安卓的最大长度为30,ios的最大长度是200。如果超出,则需要分段打印,打印时需要将字符串转化为16进制。



import { getInfoSync } from '@uni/system-info';

let ZPRINTER_SERVICE_UUID = ''; // Zebra Bluetooth LE Parser Service

let WRITE_TO_ZPRINTER_CHARACTERISTIC_UUID = ''; // Write to printer characteristic

let deviceList = [];

let barcodeValue = '';

let connectedDevice = false;

let timeout = null;

function FunTimeout() {

  timeout = setTimeout(() => {

    if (!connectedDevice) {

      dd.hideLoading();

      dd.showToast({

        type: 'fail',

        content: '暂无可用打印机',

      });

      stopDiscovery();

    }

  }, 8000);

}

function getBarCode() {

  return (

    '! 0 200 200 250 1\r\n' +

    'JOURNAL\r\n' +

    'CENTER\r\n' +

    '; Annotate bar codes using font 5 size 2\r\n ' +

    '; and offset 7 dots from the bar code.\r\n' +

    'BARCODE-TEXT 5 2 7\r\n' +

    'BARCODE 128 2 1 100 0 20 ' +

    barcodeValue +

    '\r\n' +

    'BARCODE-TEXT OFF\r\n' +

    'PRINT\r\n'

  );

}

// 将字符串转换为十六进制字符串

function strToHex(str) {

  let hex = '';

  for (let i = 0; i < str.length; i++) {

    const charCode = str.charCodeAt(i).toString(16);

    hex += charCode.length < 2 ? '0' + charCode : charCode;

  }

  return hex;

}

// 初始化蓝牙接口

function initBluetoothAdapter() {

  return new Promise((resolve, reject) => {

    dd.openBluetoothAdapter({

      success: (res) => {

        const { isSupportBLE } = res;

        if (isSupportBLE) {

          resolve(res);

        } else {

          dd.hideLoading();

          dd.showToast({

            type: 'fail',

            content: '暂不支持打印',

          });

          reject(res);

        }

      },

      fail: (res) => {

        dd.hideLoading();

        const { errorMessage } = res;

        dd.showToast({

          type: 'fail',

          content: errorMessage,

        });

        reject(res);

      },

      complete: (res) => {

        console.log('initBluetoothAdapter', res);

      },

    });

  });

}

function initChangeListener() {

  dd.onBluetoothAdapterStateChange({

    success: (res) => {

      console.log('onBluetoothAdapterStateChange-success', res);

      //   const { available = false } = res || {};

      //   if (available) {

      //     getDevices();

      //   } else {

      //     dd.showToast({

      //       type: 'fail',

      //       content: '手机蓝牙模块不可用!',

      //     });

      //   }

    },

    fail: (res) => {

      dd.hideLoading();

      console.log('onBluetoothAdapterStateChange-fail', res);

      const { errorMessage } = res;

      dd.showToast({

        type: 'fail',

        content: errorMessage,

      });

    },

  });

  dd.onBluetoothDeviceFound({

    allowDuplicatesKey: true,

    success: (res) => {

      const { devices = [] } = res || {};

      const My_devices = devices.filter((i) => i?.deviceName && i?.deviceName.includes('JJKY')) || [];

      console.log(

        'onBluetoothDeviceFound-success',

        connectedDevice,

        devices,

        My_devices,

        My_devices.length && My_devices?.[0].deviceId,

      );

      if (My_devices.length && My_devices?.[0].deviceId && !connectedDevice) {

        connectDevice(My_devices?.[0].deviceId);

        deviceList = My_devices;

      }

    },

    fail: (res) => {

      dd.hideLoading();

      console.log('onBluetoothDeviceFound-fail', res);

      const { errorMessage } = res;

      dd.showToast({

        type: 'fail',

        content: errorMessage,

      });

    },

  });

  dd.onBLEConnectionStateChanged({

    success: (res) => {

      console.log('onBLEConnectionStateChanged-success', connectedDevice, res);

      const { connected, deviceId } = res || {};

      if (connected && !connectedDevice) {

        connectedDevice = true;

        stopDiscovery(deviceId);

      }

    },

    fail: (res) => {

      dd.hideLoading();

      console.log('onBLEConnectionStateChanged-fail', res);

      const { errorMessage } = res;

      dd.showToast({

        type: 'fail',

        content: errorMessage,

      });

    },

  });

}

// 开始搜索设备

function startDiscovery() {

  dd.startBluetoothDevicesDiscovery({

    success: (res) => {

      console.log('startBluetoothDevicesDiscovery-success', res);

    },

    fail: (res) => {

      dd.hideLoading();

      console.log('startBluetoothDevicesDiscovery-fail', res);

      const { errorMessage } = res;

      dd.showToast({

        type: 'fail',

        content: errorMessage,

      });

    },

  });

}

// 停止搜索设备

function stopDiscovery(val) {

  dd.stopBluetoothDevicesDiscovery({

    success: (res) => {

      console.log('stopBluetoothDevicesDiscovery-success', res);

      val && getBLEDeviceServices(val);

    },

    fail: (res) => {

      dd.hideLoading();

      const { errorMessage } = res;

      dd.showToast({

        type: 'fail',

        content: errorMessage,

      });

      console.log('stopBluetoothDevicesDiscovery-fail', res);

    },

  });

}

// 连接设备

function connectDevice(val) {

  dd.connectBLEDevice({

    deviceId: val,

    success: (res) => {

      console.log('connectBLEDevice-success', res);

    },

    fail: (res) => {

      dd.hideLoading();

      console.log('connectBLEDevice-fail', res);

      const { errorMessage } = res;

      dd.showToast({

        type: 'fail',

        content: errorMessage,

      });

    },

  });

}

// 获取服务

function getBLEDeviceServices(val) {

  dd.getBLEDeviceServices({

    deviceId: val,

    success: (res) => {

      console.log('getBLEDeviceServices-success', res);

      const { services = [] } = res || {};

      ZPRINTER_SERVICE_UUID = services[services.length - 1]?.serviceId || '';

      getBLEDeviceCharacteristics(val);

    },

    fail: (res) => {

      dd.hideLoading();

      console.log('getBLEDeviceServices-fail', res);

      const { errorMessage } = res;

      dd.showToast({

        type: 'fail',

        content: errorMessage,

      });

    },

  });

}

// 获取特征值

function getBLEDeviceCharacteristics(val) {

  dd.getBLEDeviceCharacteristics({

    deviceId: val,

    serviceId: ZPRINTER_SERVICE_UUID,

    success: (res) => {

      console.log('getBLEDeviceCharacteristics-success', res);

      const { characteristics = [] } = res || {};

      WRITE_TO_ZPRINTER_CHARACTERISTIC_UUID =

        characteristics?.find((i) => i?.properties?.write)?.characteristicId || '';

      writeStringToPrinter(getBarCode());

    },

    fail: (res) => {

      dd.hideLoading();

      console.log('getBLEDeviceCharacteristics-fail', res);

      const { errorMessage } = res;

      dd.showToast({

        type: 'fail',

        content: errorMessage,

      });

    },

  });

}

// 写入值

async function writeStringToPrinter(str) {

  const sysInfo = getInfoSync();

  let maxChunk = 20; // Default is 20 bytes per write to characteristic

  if (sysInfo?.platform?.toLowerCase() === 'ios') {

    maxChunk = 300; // 300 bytes per write to characteristic works for iOS

  } else if (sysInfo?.platform?.toLowerCase() === 'android') {

    maxChunk = 20; // Adjusting for Android

  }

  if (str.length <= maxChunk) {

    writeStrToCharacteristic(str);

  } else {

    // Need to partion the string and write one chunk at a time.

    let j = 0;

    for (let i = 0; i < str.length; i += maxChunk) {

      let subStr = '';

      const middleStep = i + maxChunk <= str.length || false;

      if (middleStep) {

        subStr = str.substring(i, i + maxChunk);

      } else {

        subStr = str.substring(i, str.length);

      }

      setTimeout(() => writeStrToCharacteristic(subStr, middleStep), 250 * j); // Adjust the delay if needed

      j++;

    }

  }

}

function writeStrToCharacteristic(strData, middleStep) {

  console.log(

    middleStep,

    strData,

    strToHex(strData),

    deviceList,

    deviceList[0].deviceId,

    barcodeValue,

    'writeStrToCharacteristic',

  );

  dd.writeBLECharacteristicValue({

    deviceId: deviceList[0].deviceId,

    serviceId: ZPRINTER_SERVICE_UUID,

    characteristicId: WRITE_TO_ZPRINTER_CHARACTERISTIC_UUID,

    // value: buf2hex(buffer),

    value: strToHex(strData),

    success(res) {

      console.log('ssi - success to send ZPL to printer:', res);

      !middleStep &&

        dd.showToast({

          type: 'success',

          content: '打印成功',

        });

    },

    fail(res) {

      console.log('ssi - Failed to send ZPL to printer:', res);

      const { errorMessage } = res;

      !middleStep &&

        dd.showToast({

          type: 'fail',

          content: errorMessage,

        });

    },

    complete: (res) => {

      console.log('[write res==>]', res);

      dd.hideLoading();

    },

  });

}

async function getBluetoothCode(val) {

  if (val) {

    dd.getLocation({

      success() {

        dd.showLoading({

          content: '打印中...',

        });

        barcodeValue = val;

        async function init() {

          await initBluetoothAdapter();

          await initChangeListener();

          startDiscovery();

          FunTimeout();

        }

        if (connectedDevice) {

          // 已连接

          writeStringToPrinter(getBarCode());

        } else {

          // 未连接

          init();

        }

      },

      fail() {

        dd.showToast({

          type: 'fail',

          content: '位置权限未开启!请给钉钉开启定位权限',

        });

      },

    });

  } else {

    dd.showToast({

      type: 'fail',

      content: '无数据打印',

    });

  }

}

function closeBluetooth() {

  //   dd.disconnectBLEDevice({

  //     deviceId: deviceList[0].deviceId,

  //   });

  //   dd.closeBluetoothAdapter();

  ZPRINTER_SERVICE_UUID = '';

  WRITE_TO_ZPRINTER_CHARACTERISTIC_UUID = '';

  deviceList = [];

  connectedDevice = false;

  barcodeValue = '';

  clearTimeout(timeout);

}

export { connectedDevice, getBluetoothCode, closeBluetooth };

©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 202,905评论 5 476
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,140评论 2 379
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 149,791评论 0 335
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,483评论 1 273
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,476评论 5 364
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,516评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,905评论 3 395
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,560评论 0 256
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,778评论 1 296
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,557评论 2 319
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,635评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,338评论 4 318
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,925评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,898评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,142评论 1 259
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 42,818评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,347评论 2 342

推荐阅读更多精彩内容