| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- 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: '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: "clock",
- position: "top_right",
- carouselId: "2"
- }
- ]
- }
- }
- },
- {
- module: "clock",
- position: "top_left",
- config: {
- timeFormat: 24,
- carouselId: "1"
- }
- },
- {
- module: "clock",
- position: "top_right",
- config: {
- timeFormat: 12,
- carouselId: "2"
- }
- }
- ]
- }
|