getQuery_electricity_level_data function
获取 查询电量 的数据
Implementation
Future<List<int>> getQuery_electricity_level_data() async {
// 0xFE 0x0E LEN SNO checksum
// 指令
int cmd = 0x0e;
// 获取SNO
final List<int> snoList = await getSNOList();
//有效数据
List<int> subData = [...snoList];
return tempEncrypt(cmd, subData);
}