getQuery_mac_address_data function

Future<List<int>> getQuery_mac_address_data()

获取 查询锁端的MAC地址 的数据

Implementation

Future<List<int>> getQuery_mac_address_data() async {
  // 设置时:0xFE 0x21  LEN  SNO checksum
  // 指令
  int cmd = 0x21;
  // 获取SNO
  final List<int> snoList = await getSNOList();

  //有效数据
  List<int> subData = [...snoList];

  return tempEncrypt(cmd, subData);
}