Skip to content

Commit 3ea8dd8

Browse files
committed
Add Bodycraft T850 treadmill support to horizontreadmill
Added BODYCRAFT_ Bluetooth device name detection to the horizontreadmill device class, enabling support for the Bodycraft T850 treadmill. https://claude.ai/code/session_01RNoh5o3x2aWdcjbcNrYXtq
1 parent 47ea3c2 commit 3ea8dd8

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

src/devices/bluetooth.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1567,7 +1567,8 @@ void bluetooth::deviceDiscovered(const QBluetoothDeviceInfo &device) {
15671567
(b.name().toUpper().startsWith(QStringLiteral("X-T"))) || // FTMS (X-T421)
15681568
(b.name().toUpper().startsWith(QStringLiteral("TC-"))) || // FTMS (Focus Fitness Jet 7 iPlus)
15691569
b.name().toUpper().startsWith(QStringLiteral("TM XP_")) || // FTMS
1570-
b.name().toUpper().startsWith(QStringLiteral("THERUN T15")) // FTMS
1570+
b.name().toUpper().startsWith(QStringLiteral("THERUN T15")) || // FTMS
1571+
b.name().toUpper().startsWith(QStringLiteral("BODYCRAFT_")) // Bodycraft T850 Treadmill
15711572
) &&
15721573
!horizonTreadmill && filter) {
15731574
this->setLastBluetoothDevice(b);

0 commit comments

Comments
 (0)