Fixed a bad example config

The example configuration pointed to a renamed rower....
This commit is contained in:
Jaap van Ekris 2023-01-22 14:38:44 +01:00 committed by GitHub
parent 60350f3dc7
commit f737fdb04d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 17 additions and 13 deletions

View File

@ -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
// })
}