From f737fdb04d7f5bdc7ec280b407b056e77c10557d Mon Sep 17 00:00:00 2001 From: Jaap van Ekris <82339657+JaapvanEkris@users.noreply.github.com> Date: Sun, 22 Jan 2023 14:38:44 +0100 Subject: [PATCH] Fixed a bad example config The example configuration pointed to a renamed rower.... --- install/config.js | 30 +++++++++++++++++------------- 1 file changed, 17 insertions(+), 13 deletions(-) diff --git a/install/config.js b/install/config.js index 35482b2..ff7f170 100644 --- a/install/config.js +++ b/install/config.js @@ -20,19 +20,23 @@ export default { default: 'debug' }, - // example: set a rower profile: - rowerSettings: rowerProfiles.DKNR320 + // The rower specific settings. Either choose a profile from config/rowerProfiles.js or + // define the settings individually. If you find good settings for a new rowing device + // please send them to us (together with a raw recording of 10 strokes) so we can add + // the device to the profiles. - // example: set custom rower settings: - rowerSettings: { - numOfImpulsesPerRevolution: 1, - dragFactor: 0.03, - flywheelInertia: 0.3 - } + // EXAMPLE ROWER CONFIG : using a DKN R-320 Air Rower as is + // rowerSettings: rowerProfiles.DKN_R320 - // example: set a rower profile, but overwrite some settings: - rowerSettings: Object.assign(rowerProfiles.DKNR320, { - autoAdjustDragFactor: true - }) - */ + // EXAMPLE ROWER CONFIG: Just set custom rower settings to make it work + // rowerSettings: { + // numOfImpulsesPerRevolution: 1, + // dragFactor: 0.03, + // flywheelInertia: 0.3 + // } + + // EXAMPLE ROWER CONFIG: set a rower profile, but overwrite some settings: + // rowerSettings: Object.assign(rowerProfiles.DKN_R320, { + // autoAdjustDragFactor: true + // }) }