Exemplo n.º 1
0
        /// <summary>Updates the ellipse color to see if the empatica is connected.</summary>
        ///
        /// <remarks>Jordi Hutjens, 14-11-2018.</remarks>
        private void EmpaticaConnected()
        {
            EmpaticaConnectedEventArgs args = new EmpaticaConnectedEventArgs {
            };

            OnEmpaticaConnected(args);
        }
 private void IUpdateEllipseColor(object sender, EmpaticaConnectedEventArgs emp)
 {
     EllipseColor = new SolidColorBrush(Colors.Green);
 }
Exemplo n.º 3
0
 /// <summary>Raises the accelerometer changed event.</summary>
 ///
 /// <remarks>Jordi Hutjens, 10-11-2018.</remarks>
 ///
 /// <param name="e">Event information to send to registered event handlers.</param>
 protected virtual void OnEmpaticaConnected(EmpaticaConnectedEventArgs e)
 {
     EmpaticaConnectedTrue?.Invoke(this, e);
 }