send method
Send the message bytes to all connected devices
Implementation
@override
void send() {
data = Uint8List(3);
data[0] = 0xB0 + channel;
data[1] = controller;
data[2] = value;
super.send();
}
Send the message bytes to all connected devices
@override
void send() {
data = Uint8List(3);
data[0] = 0xB0 + channel;
data[1] = controller;
data[2] = value;
super.send();
}