Skip to content

Commit

Permalink
Bugfix: cycling cadence data should be handled by BluetoothHandlerCyc…
Browse files Browse the repository at this point in the history
…lingCadence.

Introduced in 15f3ccb
  • Loading branch information
dennisguse committed Dec 17, 2023
1 parent 330ca4a commit 0ec9340
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ public BluetoothRemoteSensorManager(@NonNull Context context, @NonNull Handler h
bluetoothAdapter = BluetoothUtils.getAdapter(context);

this.heartRate = new BluetoothConnectionManager(observer, new BluetoothHandlerManagerHeartRate());
this.cyclingCadence = new BluetoothConnectionManager(observer, new BluetoothHandlerCyclingDistanceSpeed());
this.cyclingCadence = new BluetoothConnectionManager(observer, new BluetoothHandlerCyclingCadence());
this.cyclingSpeed = new BluetoothConnectionManager(observer, new BluetoothHandlerCyclingDistanceSpeed());
this.cyclingPower = new BluetoothConnectionManager(observer, new BluetoothHandlerManagerCyclingPower());
this.runningSpeedAndCadence = new BluetoothConnectionManager(observer, new BluetoothHandlerRunningSpeedAndCadence());
Expand Down

0 comments on commit 0ec9340

Please sign in to comment.