Ejemplo n.º 1
0
 public override void DidReceiveBatteryLevel(float level, double timestamp, EmpaticaDeviceManager device)
 {
     if (!_isCapturing)
     {
         return;
     }
     BatteryLevelAction?.Invoke(new BatteryLevel(level, timestamp - _startedTime));
 }
Ejemplo n.º 2
0
 public void DidReceiveBatteryLevel(float level, double timestamp)
 {
     if (!_isCapturing)
     {
         return;
     }
     BatteryLevelAction?.Invoke(new BatteryLevel(level, timestamp - _startedTime));
 }