2
0
mirror of https://github.com/fhem/fhem-mirror.git synced 2025-04-07 19:04:20 +00:00
fhem-mirror/fhem/www/frontend/app/userconfig.js
johannnes 25ab56a7d1 structure changes...
git-svn-id: https://svn.fhem.de/fhem/trunk@4475 2b470e98-0d58-463d-a4d8-8e2adae1ed80
2013-12-27 15:03:31 +00:00

20 lines
613 B
JavaScript

/**
* This is the user configuration file for the frontend.
* You can set your own parameters here, e.g. to set how the charting should
* handle non numeric values
*/
FHEM = {};
FHEM.userconfig = {
// Here you can set how non numeric values like "on" or "off" should be interpreted in the charts
// you can add your own specific parameter here if needed and give it a numeric value of your choice, e.g.
// "an": "100",
// "aus": "50"
chartkeys: {
"on": "1",
"off": "0",
"open": "10",
"closed": "1"
}
};