getDeviceState method

Future<List<int>> getDeviceState()

Implementation

Future<List<int>> getDeviceState() {
  final cmd = List<int>.filled(5, 0);
  cmd[0] = 0x06;
  cmd[1] = 0x01;
  return getElinkA7Data(cmd);
}