| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133 |
- let config = {
- address: "0.0.0.0",
- port: 8080,
- basePath: "/",
- ipWhitelist: [],
- useHttps: false,
- language: "de",
- locale: "de-DE",
- logLevel: ["INFO", "LOG", "WARN", "ERROR"],
- timeFormat: 24,
- units: "metric",
- modules: [
- {
- module: "alert",
- },
- {
- module: 'MMM-Carousel',
- position: 'bottom_bar',
- config: {
- transitionInterval: 30000,
- showPageIndicators: true,
- showPageControls: false,
- ignoreModules: [],
- mode: 'slides',
- slides: {
- Main: [
- { name: 'clock', position: "top_left", carouselId: "1" },
- { name: 'MMM-SimpleLogo', position: "top_right", carouselId: "1" },
- { name: 'calendar', position: "middle_center", carouselId: "1" }
- ],
- "Slide 2": [
- ]
- }
- }
- },
- /*
- SECTION - Main Slide
- */
- {
- module: 'clock',
- position: "top_left",
- config: {
- timeFormat: 24,
- carouselId: '1'
- }
- },
- {
- module: 'MMM-SimpleLogo',
- position: 'top_right',
- config: {
- carouselId: "1",
- fileUrl: "modules/MMM-SimpleLogo/public/wachenwappen.png",
- text: "",
- position: "right",
- width: "200px",
- }
- },
- {
- module: "calendar",
- header: "Tagesübersicht",
- position: "middle_center",
- config: {
- carouselId: "1",
- tableClass: "large wachenaufgaben",
- fetchInterval: 600000, /* 600000 */
- maxTitleLength: 50,
- displaySymbol: true,
- showLocation: false,
- maxTitleLines: 1,
- maximumEntries: 9,
- maximumNumberOfDays: 1,
- calendars: [
- {
- /* Fahrzeug 21/83-1 */
- url: 'https://nc.x0p.it/remote.php/dav/public-calendars/exdmis8xiZc54mn3?export',
- symbolClass: 'rtw-symbol',
- titleClass: 'rtw-title',
- timeClass: 'rtw-time',
- symbol: 'truck-medical'
- },
- {
- /* Fahrzeug 21/84-1 */
- url: 'https://nc.x0p.it/remote.php/dav/public-calendars/NGATEN6qkf9wWEc6?export',
- symbolClass: 'nktw-symbol',
- titleClass: 'nktw-title',
- timeClass: 'nktw-time',
- symbol: 'truck-medical',
- },
- {
- /* Fahrzeug 21/85-1 */
- url: 'https://nc.x0p.it/remote.php/dav/public-calendars/G6Ho8gHmWk4X7qB7?export',
- symbolClass: 'ktw-symbol',
- titleClass: 'ktw-title',
- timeClass: 'ktw-time',
- symbol: 'truck-medical',
- },
- {
- /* RW21 ToDo */
- url: 'https://nc.x0p.it/remote.php/dav/public-calendars/ZMGgBLGn52oATzDw?export',
- symbolClass: 'todo-symbol',
- titleClass: 'todo-title',
- timeClass: 'todotime',
- symbol: 'clipboard-list-check'
- },
- {
- /* RW21 Putzplan */
- url: 'https://nc.x0p.it/remote.php/dav/public-calendars/WW49cKGiiZyy95q8?export',
- symbolClass: 'clean-symbol',
- titleClass: 'clean-title',
- timeClass: 'clean-time',
- symbol: 'vacuum',
- },
- {
- /* RW21 Allgemeines */
- url: 'https://nc.x0p.it/remote.php/dav/public-calendars/eMQW6HmyjfgS8bXq?export',
- symbolClass: 'info-symbol',
- titleClass: 'info-title',
- timeClass: 'info-time',
- symbol: 'circle-info',
- maximumNumberOfDays: 7,
- }
- ]
- }
- }
- /*
- !!SECTION
- */
- ]
- }
- /*************** DO NOT EDIT THE LINE BELOW ***************/
- if (typeof module !== "undefined") { module.exports = config; }
|