chronocurl

Results 7 comments of chronocurl

I have the same problem and I am really interested in the solution too! I do await bluetoothCharacteristic.write(utf8.encode(command)), withoutResponse: true ); and the error occurs after some writings. And in...

I did a test and I pass 1 or 2 characters to the write command and in my case it does not seem to be the size that causes the...

Did you try the write with the withoutResponse : true. In my case it works for some write and it crashes after.

In my case I already have await before the write instruction and I still have the error. I notice that in my Characteristic listener I receive the writes that I...

Here the code to write : @override void sendMessageToDevice(String command) async { if (this.isConnected) { await bluetoothCharacteristic.write(utf8.encode(command), withoutResponse: true ); } } @override void calibration() { sendMessageToDevice("I"); } If necessary...

Currently I send only 1 write at a time to my device, there is no concurrency at this point. The first situation is that everything is fine when the device...

I did several tests today and I confirm that there is a real problem when a write message is sent along with a message from the bluetooth device. write --->...