Fixed a bad example config
The example configuration pointed to a renamed rower....
This commit is contained in:
parent
60350f3dc7
commit
f737fdb04d
|
|
@ -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
|
||||
// })
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue