西西软件园多重安全检测下载网站、值得信赖的软件下载站!
软件
软件
文章
搜索

首页编程开发其它知识 → Windows Phone 8蓝牙编程开发

Windows Phone 8蓝牙编程开发

相关软件相关文章发表评论 来源:西西整理时间:2013/1/12 13:02:14字体大小:A-A+

作者:西西点击:227次评论:1次标签: 蓝牙

  • 类型:硬件优化测试大小:13.9M语言:中文 评分:10.0
  • 标签:
立即下载
3 页 实现蓝牙程序对设备的连接

实例:实现蓝牙程序对设备的连接

下面给出蓝牙程序对设备连接的示例:查找蓝牙设备,并对找到的第一个蓝牙设备进行连接。
代码清单19-2:蓝牙程序对设备连接(源代码:第19章\Examples_19_2)

MainPage.xaml文件主要代码

        <Grid x:Name="ContentPanel" Grid.Row="1" Margin="12,0,12,0">
             <StackPanel>
                <Button x:Name="btFindBluetooth" Content="连接周围的蓝牙设备" Click="btFindBluetooth_Click"/>
            </StackPanel>
        </Grid>

MainPage.xaml.cs文件主要代码

        // 查找蓝牙设备事件处理
        private async void btFindBluetooth_Click(object sender, RoutedEventArgs e)
        {
            try
            {
                // 配置PeerFinder蓝牙服务的GUID去搜索设备
                PeerFinder.AlternateIdentities["Bluetooth:SDP"] = "5bec6b8f-7eba-4452-bf59-1a510745e99d";
                var peers = await PeerFinder.FindAllPeersAsync();
                if (peers.Count == 0)
                {
                    Debug.WriteLine("没发现蓝牙设备");
                }
                else
                {
                    // 连接找到的第一个蓝牙设备
                    PeerInformation selectedPeer = peers[0];
                    StreamSocket socket = new StreamSocket();
                    await socket.ConnectAsync(selectedPeer.HostName, selectedPeer.ServiceName);
                    MessageBox.Show("连接上了HostName:" + selectedPeer.HostName + "ServiceName:" + selectedPeer.ServiceName);
                }
            }
            catch (Exception ex)
            {
                if ((uint)ex.HResult == 0x8007048F)
                {
                    MessageBox.Show("Bluetooth is turned off");
                }
            }
        }

程序的运行效果如图19.3所示

本文导航

    相关评论

    阅读本文后您有什么感想? 已有人给出评价!

    • 8 喜欢喜欢
    • 3 顶
    • 1 难过难过
    • 5 囧
    • 3 围观围观
    • 2 无聊无聊

    热门评论

    最新评论

    发表评论 查看所有评论(1)

    昵称:
    表情: 高兴 可 汗 我不要 害羞 好 下下下 送花 屎 亲亲
    字数: 0/500 (您的评论需要经过审核才能显示)