Ejemplo n.º 1
0
 private async void EmailNotification_Click(object sender, RoutedEventArgs e)
 {
     if (_pebble != null && _pebble.IsConnected)
     {
         await _pebble.EmailNotificationAsync("*****@*****.**", "P3bble", "youre sooo cooool :)");
     }
     else
     {
         MessageBox.Show("Pebble not connected");
     }
 }