Example #1
0
        public MainPage()
        {
            this.InitializeComponent();
            RemoteGattService remoteGattService = new RemoteGattService();

            remoteGattService.PublishService();
        }
Example #2
0
 private void NextButton_Click(object sender, RoutedEventArgs e)
 {
     RemoteGattService.NotifyValue((int)VirtualKeyCode.MEDIA_NEXT_TRACK);
 }
Example #3
0
 private void PlayButton_Click(object sender, RoutedEventArgs e)
 {
     RemoteGattService.NotifyValue((int)VirtualKeyCode.MEDIA_PLAY_PAUSE);
 }