16 lines
437 B
JavaScript
16 lines
437 B
JavaScript
'use strict'
|
|
/*
|
|
Open Rowing Monitor, https://github.com/laberning/openrowingmonitor
|
|
|
|
Defines the global state of the app
|
|
*/
|
|
|
|
export const APP_STATE = {
|
|
// currently can be STANDALONE (Mobile Home Screen App), KIOSK (Raspberry Pi deployment) or '' (default)
|
|
appMode: '',
|
|
// currently can be FTMS, FTMSBIKE or PM5
|
|
peripheralMode: 'FTMS',
|
|
// contains all the rowing metrics that are delivered from the backend
|
|
metrics: {}
|
|
}
|