mirror of
https://github.com/rofafor/vdr-plugin-femon.git
synced 2023-10-10 13:36:53 +02:00
74ed4d8490
Toggle between different modes with 'OK' key: .-> basic -> transponder -> stream -. `-----------------------------------´ Added missing german translations (Thanks to Peter Marquardt).
25 lines
450 B
C
25 lines
450 B
C
/*
|
|
* Frontend Status Monitor plugin for the Video Disk Recorder
|
|
*
|
|
* See the README file for copyright information and how to reach the author.
|
|
*
|
|
* $Id$
|
|
*/
|
|
|
|
#include "femoncfg.h"
|
|
|
|
cFemonConfig femonConfig;
|
|
|
|
cFemonConfig::cFemonConfig(void)
|
|
{
|
|
hidemenu = 0;
|
|
displaymode = 0;
|
|
position = 1;
|
|
redlimit = 33;
|
|
greenlimit = 66;
|
|
updateinterval = 5;
|
|
analyzestream = 1;
|
|
calcinterval = 20;
|
|
syslogoutput = 0;
|
|
}
|