Show us your zwift setup!

Constant work in progress!

1 x pc on left hand TV
1 x pc on middle PC
Apple TV on right hand TV

Wahoo kickr
Wahoo kickr core
Life Fitness T3 Bluetooth treadmill

Ceiling fans are 18" gym fans, hanging from home made bracket and plugged into smart plus

2 x high velocity remote controlled fans on floor in front of bikes

Lifeline tables shield anchor bolted into floor

Foam tiles covering whole floor

2 x IKEA kallax for TV console

Google home

Concept 2 PM5 - not in view
Adjustable dumbells and gym bench not in view

4 Likes

My Zwift setup. Oslo, Norway:

  • Bedroom with 9 sqare meters training floor.
  • Double cabinet bed get more space.
  • 8 year old Sportsmaster dumb treadmill with NPE Runn bluetooth sensor.
  • Gravelbike on Tacx Flux 2 smart trainer.
  • Apple TV.
  • 27" monitor.
  • JBR Charge speaker.
  • Small fan.
  • 3x Redcord Portable Gym slings.

Next step is to sell the treadmill and get a bike or Concept2.

1 Like

Trying to get my Treadmill jooked up via Bluetooth. Here is what I’ve got so far before working on an actual sensor. I thought it would record inclination data and pass it on to the fit file but does not appear to be there looking in Garmin connect or fit converted to tcx. Might be a mistake in my code. Anyways if I can’t get it to record inclination data anywhere might go back to emulating a footpod. Can anyone confirm if their treadmill (for those with ble built-in) or microcontroller adapter was able to get inclination data recorded into Zwift? If so, where did you see it?

Here is my code I’m using:

#include <ArduinoBLE.h>

BLEService fitness_machine_service(“1826”); // Fitness Machine Service
BLECharacteristic RSCMeasurementChar(“2ACD”, BLENotify, 8); // Treadmill Data

uint16_t inst_speed = 0; // Instantaneous speed in units of .01 km/h
uint16_t incl_percent = 20; // How feel going uphill or downhill. Signed, units of .1 percent
uint16_t ramp_angle = 20; // Angle of inclination of treadmill ramp. Signed, units of .l degree

float kmph=0.0;
float old_kmph=0.0;

void setup() {
Serial.begin(9600);
while (!Serial);

pinMode(LED_BUILTIN,OUTPUT);

if (!BLE.begin()) {
Serial.println(“starting BLE failed”);
while(1);
}

BLE.setLocalName(“HorizonTreadMill”);
BLE.setAdvertisedService(fitness_machine_service);
fitness_machine_service.addCharacteristic(RSCMeasurementChar);
BLE.addService(fitness_machine_service);
BLE.advertise();
Serial.println(“Bluetooth device active, waiting for connection…”);
}

void loop() {
BLEDevice central = BLE.central();

if (central) {
Serial.print("Connected to central: ");
Serial.println(central.address());
digitalWrite(LED_BUILTIN,HIGH);
while (central.connected()) {
kmph = 10.5;
inst_speed = kmph*100; // Sent in units of .01 km/h

   // 2 bytes of flags, 
   byte byteArray[8] = {
   4,0,
  (unsigned byte)inst_speed, (unsigned byte) (inst_speed >> 8),
  (unsigned byte)incl_percent, (unsigned byte) (incl_percent >> 8),
  (unsigned byte)ramp_angle, (unsigned byte) (ramp_angle >> 8)
   };

  RSCMeasurementChar.writeValue(byteArray,8);
}

}
digitalWrite(LED_BUILTIN,LOW);
Serial.print("Disconnected from central: ");
Serial.println(central.address());
}

hi,
maybe you can checkout my github project: /lefty01/ESP32_TTGO_FTMS/
this uses a ESP32 board and switched to using NimBLE but the project … it’s been a while when the ble part was developed :wink: but you might compare the parts where characteristics are being added … I do have in addition to:

// {0x2ACD, “Treadmill Data”}
BLECharacteristic TreadmillDataCharacteristics(BLEUUID((uint16_t)0x2ACD),

a FitnessMachineFeatureCharacteristic:

// {0x2ACC, “Fitness Machine Feature”}
BLECharacteristic FitnessMachineFeatureCharacteristic(BLEUUID((uint16_t)0x2ACC),

that’s in the initBLE() function …

not sure if that is helpful … but I definitely get the incline data towards zwift …

1 Like

Tacx NEOs for the bikes (0G and 2T) w/ 43" monitors. StarTrac 4TR treadmill w/ Runn on 50" monitor. And a few fans.

1 Like

1 Like