35 lines
945 B
JavaScript
35 lines
945 B
JavaScript
'use strict'
|
|
/*
|
|
Open Rowing Monitor, https://github.com/laberning/openrowingmonitor
|
|
|
|
You can modify this file to configure Open Rowing Monitor to your needs.
|
|
This file should be placed in the 'config' folder of Open Rowing Monitor.
|
|
|
|
All available configuration parameters are visible in config/config.default.js
|
|
To modify a parameter, copy it to this file and modify the value.
|
|
|
|
Changes to this file are persisted when you update to new versions.
|
|
*/
|
|
// eslint-disable-next-line no-unused-vars
|
|
import rowerProfiles from './rowerProfiles.js'
|
|
|
|
export default {
|
|
/*
|
|
// example: change the default log level:
|
|
loglevel: {
|
|
default: 'debug'
|
|
},
|
|
|
|
// example: set a rower profile:
|
|
rowerSettings: rowerProfiles.DKNR320
|
|
|
|
// example: set custom rower settings:
|
|
rowerSettings: {
|
|
numOfImpulsesPerRevolution: 1,
|
|
omegaDotDivOmegaSquare: 0.03,
|
|
jMoment: 0.3,
|
|
liquidFlywheel: false
|
|
}
|
|
*/
|
|
}
|