Magnetic Milk

Results 8 comments of Magnetic Milk

I store the id of the device that i want in a file then on the start of the app i read it and scan to check if that device...

``` connectToDeviceViaAddressAsync(){ readFileAsync("bluetoothDevice.txt").then((file) { if(file != "" &&file != "NULL"){ flutterBlue.connectedDevices.then((value) { if(value.isEmpty){ connectToDeviceViaAddress(file.split("\n")[1]); } }); } }); } ``` ``` Future readFileAsync(String fileName) async{ try{ Directory appDir = await...

I had the same problem. It's like you can't write to there. Anyway I just used the download flash tools to flash the firmware bin file into the esp. If...

Well I didn't know that. This is also very handy to me so thank you and have a great day @Chanete .

Thanks and have a great day.

I may try to fix it and send a pull request if when I will find a good time