示例#1
0
 void BtHrmNotification(string json)
 {
     if (BtHrmNotificationEvent != null)
     {
         var N         = JSON.Parse(json);
         int heartRate = N["heart_rate"].AsInt;
         var args      = new BtHrmNotificationEventArgs(heartRate);
         BtHrmNotificationEvent(args);
     }
 }
 void BtHrmNotification(string json)
 {
     if (BtHrmNotificationEvent != null)
     {
         var N = JSON.Parse(json);
         int heartRate = N["heart_rate"].AsInt;
         var args = new BtHrmNotificationEventArgs(heartRate);
         BtHrmNotificationEvent(args);
     }
 }