USB-HID-Treadmill-Hack

Control speed + incline using Windows PC + 4-8 channel USB HID Relay board (new: Heart Rate controlled treadmill workouts via Bluetooth Heart Rate chest band - see 2023 update below)

App icon

Github project: https://github.com/dynalogix/USB-HID-Treadmill-Hack

Video demo of a 6-channel switch hooked up to the control panel of Kondition 4B-550 treadmill: https://youtu.be/e4qM4HLBIr8

Requirements

Hardware:

Relay board

Software:

Screenshot

Fields:

Settings are saved between sessions

Screenshot

Workout

I plan to add more, currently there is one implemented:

Chart

A 115 minute workout: you can see warm-up/wind-down and all the 8x3min “sprint” section’s effect on the heart rate (measured using a TicWatch Pro 3 Wear OS smart watch)

Heartrate

Settings:

Settings

The workout logic is in the function workout1:

Calls

toggle(switch, state)

press(switch)

wait(delay)

**Set your VIDPID and optional parameters **

After opening the app at least once, find the configuration file under C:\Users\???\AppData\Local\walk\walk_???\1.0.0.0\user.config

Add two settings manually (otherwise some incorrect defaults will be used):

 <?xml version="1.0" encoding="utf-8"?>
 <configuration>
     <configSections>
         <sectionGroup name="userSettings" type="System.Configuration.UserSettingsGroup, System.Configuration.ConfigurationManager, Version=4.0.3.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51" >
            <section name="walk.Properties.Settings" type="System.Configuration.ClientSettingsSection, System.Configuration.ConfigurationManager, Version=4.0.3.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51" allowExeDefinition="MachineToLocalUser" requirePermission="false" />
         </sectionGroup>
     </configSections>
     <userSettings>
         <walk.Properties.Settings>
          <setting name="Duration" serializeAs="String"><value>100</value></setting>
          <setting name="Sprint" serializeAs="String"><value>7.5</value></setting>
          <setting name="Warmup" serializeAs="String"><value>8</value></setting>
          <setting name="Speed" serializeAs="String"><value>6.2</value></setting>
          
          <!-- Add these optional parameters -->             
          <setting name="Vidpid" serializeAs="String"><value>0519/2018</value></setting>
          <setting name="ButtonPressSec" serializeAs="float"><value>0.2</value></setting>
          <setting name="ButtonStart" serializeAs="bool"><value>True</value></setting>
          <setting name="ButtonStop" serializeAs="bool"><value>False</value></setting>
          <setting name="ButtonMode" serializeAs="bool"><value>True</value></setting>
          
         </walk.Properties.Settings>
     </userSettings>
 </configuration>

How to find vid/pid

Get the app Hidapitester: https://github.com/todbot/hidapitester/releases/tag/0.1

Use command:

hidapitester --list

Look for the id in the beginning of the line which has "HIDRelay":

e.g.:
0519/2018: Ucreatefun.com - HIDRelay
↓
here the vidpid is 0519/2018

Then you can open, write, close in one command.

  hidapitester --vidpid 0519 --open --send-output 0,241 --close
  output 0,241: shorts channel 1
  output 0,1: opens channel 1
  output 0,242: shorts channel 2
  etc
  finally:
  output 0,249:shorts all channels
  output 0,9: opens all channels
or
  hidapitester --vidpid 16C0/05DF --open --send-feature 0,253,1 --close
  feature 0,255,1: shorts channel 1
  feature 0,253,1: opens channel 1
  feature 0,255,2: shorts channel 2
  feature 0,253,2: opens channel 2
  etc

Plans

…or not. Currently this is what I need, I provide it as a basis for anyone wanting to create something similar.

Git Hub project: https://github.com/dynalogix/USB-HID-Treadmill-Hack

2023 update: Bluetooth Heart Rate control and more!

Heart Rate

What’s new:

Summary data example: (e.g. 2023-01-19 18.46.txt, see 2023-01-19 18.46.png above)

 Duration: 25min (warmup time: 4.1 min)
 HR Max: 124bps Avg: 103.19683bps Plot range: 85…128bps
 Speed Max: 7.00km/h Avg: 4.81km/h
 Ascend: 9946
 Distance: 1991m
 Calories: 210KCal
 Sections: (4 peaks)
  0:00:06 warmup↑100
  0:04:06 ↑115
  0:05:55 →115
  0:06:55 ↓100
  0:08:03 →100
  0:09:05 ↑115
  0:10:50 →115
  0:11:50 ↓100
  0:13:26 →100
  0:13:58 ↑115
  0:15:17 →115
  0:16:01 ↓100
  0:17:35 →100
  0:18:06 ↑115
  0:19:52 →115
  0:20:24 ↓100
  0:22:07 →100
  0:22:07 cool↓3.0

New settings:

New, heart rate controlled workout:

workout plot

Plot

Screenshot + Summary

Source code notes for BT