diff --git a/owrx/connection.py b/owrx/connection.py index e2e23d3..b667a53 100644 --- a/owrx/connection.py +++ b/owrx/connection.py @@ -172,7 +172,7 @@ class OpenWebRxReceiverClient(Client): self.dsp.setProperty(key, value) def write_spectrum_data(self, data): - self.send(bytes([0x01]) + data) + self.mp_send(bytes([0x01]) + data) def write_dsp_data(self, data): self.send(bytes([0x02]) + data)