private void TriggerNotifyGyroscope(ReadOnlySpan <byte> bytes) { var gyroscope = Parse.Gyroscope(bytes); NotifyGyroscope?.Invoke(gyroscope); }
private void TriggerNotifyTelemetry(ReadOnlySpan <byte> bytes) { var telemetry = Parse.Telemetry(bytes); NotifyTelemetry?.Invoke(telemetry); }
private void TriggerNotifyAccelerometer(ReadOnlySpan <byte> bytes) { var accelerometer = Parse.Accelerometer(bytes); NotifyAccelerometer?.Invoke(accelerometer); }
private void TriggerNotifyEeg(Channel channel, ReadOnlySpan <byte> bytes) { var eeg = Parse.Encefalogram(bytes); NotifyEeg?.Invoke(channel, eeg); }