MonoDroid蓝牙

时间:2011-09-21 20:40:00

标签: c# android bluetooth xamarin.android

我已经使用Monodroid几天了,仍然无法弄清楚如何通过蓝牙发送命令。

这是我的方案:我有一台使用Android 2.1+的平板电脑/手机,需要向蓝牙打印机发送和接收数据(以字节为单位)。

到目前为止我管理的内容:

using Android.Bluetooth; // library necessary

BluetoothAdapter bth = BluetoothAdapter.DefaultAdapter;
if (!bth.IsEnabled)
    bth.Enable();

ICollection<BluetoothDevice> bthD = bth.BondedDevices;

foreach (BluetoothDevice d in bthD)
{
    if (d.Name == "DPP-350")
    {
        Java.Util.UUID UUID = Java.Util.UUID.FromString("00001101-0000-1000-8000-00805F9B34FB");
        // Get the BLuetoothDevice object
        BluetoothSocket s = d.CreateRfcommSocketToServiceRecord(UUID);

        s.Connect();

        // Try to send command
        ...

        s.Close()
    }
}

程序要求配对信息,并且正确完成。 我尝试了很多方法来发送命令:

// the command
// Self_Test = Chr(27) + Chr(84) = ESC T
byte[] dBytes = System.Text.Encoding.GetEncoding(1252).GetBytes(Self_Test);

// wont work
new Java.IO.ObjectOutputStream(s.OutputStream).Write(dBytes);
// wont work
System.IO.Stream st = s.OutputStream;
if (st.CanWrite)
{
   st.Write(dBytes, 0, dBytes.Length);
   st.Flush();
}
// wonk work
s.OutputStream.Write(dBytes, 0, dBytes.Length);
s.OutputStream.Flush();

没有出现错误。我在这里没有选择......

提前致谢!

1 个答案:

答案 0 :(得分:4)

我知道这是一个非常古老的帖子,但我想发布回复,以便其他人知道答案。我也没有运气地努力搜索。

s.OutputStream.BeginWrite(buffer, 0, buffer.Length,new AsyncCallback(delegate {}), State.Connected);

感谢。