send method
Send the message bytes to all connected devices
Implementation
@override
void send({String? deviceId, int? timestamp}) {
data = Uint8List(3);
data[0] = 0xA0 + channel;
data[1] = note;
data[2] = pressure;
super.send(deviceId: deviceId, timestamp: timestamp);
}