34 lines
1.2 KiB
JavaScript
34 lines
1.2 KiB
JavaScript
'use strict'
|
|
/*
|
|
Open Rowing Monitor, https://github.com/laberning/openrowingmonitor
|
|
|
|
This file contains the default configuration of the Open Rowing Monitor.
|
|
|
|
!!! Note that changes to this file will be OVERWRITTEN when you update to a new version
|
|
of Open Rowing Monitor. !!!
|
|
|
|
To change the settings you should modify the 'config.js' in this folder. If 'config.js' does not
|
|
exist, you can use the example file from the 'install' folder.
|
|
*/
|
|
import rowerProfiles from './rowerProfiles.js'
|
|
|
|
export default {
|
|
// available log levels: trace, debug, info, warn, error, silent
|
|
loglevel: {
|
|
// the default loglevel
|
|
default: 'info',
|
|
// the log level of of the rowing engine (stroke detection and physics model)
|
|
RowingEngine: 'warn'
|
|
},
|
|
|
|
// selects the Bluetooth Low Energy Profile
|
|
// supported modes: FTMS, FTMSBIKE, PM5
|
|
bluetoothMode: 'FTMS',
|
|
|
|
// 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.
|
|
rowerSettings: rowerProfiles.DEFAULT
|
|
}
|