uncommented sending command

This commit is contained in:
YamiDoesDev 2022-12-17 22:08:53 +01:00
parent cadc0cb8d1
commit 1cd4a74979
1 changed files with 2 additions and 2 deletions

View File

@ -196,8 +196,8 @@ class _BluetoothScreen extends State<BluetoothScreen> {
Future<void> _sendData() async { Future<void> _sendData() async {
//String output = "0123456789 abcdefghijklmnopqrstuvwxyz ABCDEFGHIJKLMNOPQRSTUVWXYZ";// !§%&()=?#!?"; //String output = "0123456789 abcdefghijklmnopqrstuvwxyz ABCDEFGHIJKLMNOPQRSTUVWXYZ";// !§%&()=?#!?";
String output = textInput; String output = textInput;
//_bluetoothConnection!.output.add(Uint8List.fromList(const AsciiEncoder().convert("$output \r\n"))); _bluetoothConnection!.output.add(Uint8List.fromList(const AsciiEncoder().convert("$output \r\n")));
//await _bluetoothConnection!.output.allSent; await _bluetoothConnection!.output.allSent;
debugPrint("sent: $output"); debugPrint("sent: $output");
} }