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'
|
default: 'debug'
|
||||||
},
|
},
|
||||||
|
|
||||||
// example: set a rower profile:
|
// The rower specific settings. Either choose a profile from config/rowerProfiles.js or
|
||||||
rowerSettings: rowerProfiles.DKNR320
|
// 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:
|
// EXAMPLE ROWER CONFIG : using a DKN R-320 Air Rower as is
|
||||||
rowerSettings: {
|
// rowerSettings: rowerProfiles.DKN_R320
|
||||||
numOfImpulsesPerRevolution: 1,
|
|
||||||
dragFactor: 0.03,
|
|
||||||
flywheelInertia: 0.3
|
|
||||||
}
|
|
||||||
|
|
||||||
// example: set a rower profile, but overwrite some settings:
|
// EXAMPLE ROWER CONFIG: Just set custom rower settings to make it work
|
||||||
rowerSettings: Object.assign(rowerProfiles.DKNR320, {
|
// rowerSettings: {
|
||||||
autoAdjustDragFactor: true
|
// 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