我正在使用32feet.net库连接蓝牙手机。 我已成功发现设备,成功与设备配对。 我已经成功地使用AT命令进行了呼叫 Bluetooth dial with 32feet.net and c#
我想在手机上进行语音通话时使用笔记本电脑的扬声器和麦克风。
拨打电话的我的C#代码是
BluetoothEndPoint bep = new BluetoothEndPoint(phone.DeviceAddress,BluetoothService.Handsfree);
cli = new BluetoothClient();
cli.Connect(bep);
peerStream = cli.GetStream();
peerStream = Listofdevices.cli.GetStream();
String dialCmd4 = "ATD"+txtdialer.Text+";\r\n";
Byte[] dcB = System.Text.Encoding.ASCII.GetBytes(dialCmd4);
Listofdevices.peerStream.Write(dcB, 0, dcB.Length);
Byte[] sRes = new Byte[200];
peerStream.Read(sRes, 0, 199);
如何使用我的扬声器和笔记本电脑麦克风进行通话?