send method

void send()
override

Send the message bytes to all connected devices

Implementation

void send() {
  data = Uint8List(6);
  // Data Entry MSB
  data[0] = 0xB0 + channel;
  data[1] = 0x63;
  data[2] = 0x7F;

  // Data Entry LSB
  data[3] = 0xB0 + channel;
  data[4] = 0x62;
  data[5] = 0x7F;

  super.send();
}