MagicMirror Forum
    • Recent
    • Tags
    • Unsolved
    • Solved
    • MagicMirror² Repository
    • Documentation
    • 3rd-Party-Modules
    • Donate
    • Discord
    • Register
    • Login
    1. Home
    2. MichaelS
    3. Posts
    A New Chapter for MagicMirror: The Community Takes the Lead
    Read the statement by Michael Teeuw here.
    M
    Offline
    • Profile
    • Following 0
    • Followers 0
    • Topics 11
    • Posts 21
    • Groups 0

    Posts

    Recent Best Controversial
    • RE: ioBroker MagicMirror Module

      @falke69

      Hallo, ich habe auch das Problem mit den Anzeigen true und false. Würde gerne Ihre Lösung umsetzten. Ich verstehe aber nicht mit welchem Programm und wo das programmiert wird.
      Im ioBroker selbst (welcher Adapter) oder auf dem Magic Mirror (welches Modul).

      Ich würde mich sehr über Unterstützung freuen.

      Beste Grüße
      Michael

      posted in Requests
      M
      MichaelS
    • MMM_Hello-Lucy

      Hi,

      i want to installe MMM-Hello Lucy. But i always get this error.
      I follow these instructions.

      git clone https://github.com/mykle1/Hello-Lucy into the ~/MagicMirror/modules directory
      cd modules/Hello-Lucy/installers
      bash dependencies.sh

      What can i do?

      [STEP 1/5] Installing Packages
      Reading package lists… Done
      Building dependency tree… Done
      Reading state information… Done
      Note, selecting ‘python-dev-is-python2’ instead of ‘python-dev’
      Package python-pip is not available, but is referred to by another package.
      This may mean that the package is missing, has been obsoleted, or
      is only available from another source
      However the following packages replace it:
      python3-pip

      E: Package ‘python-pip’ has no installation candidate
      [STEP 1/5] Installing Packages | Failed

      Thank you for help.
      Michael

      posted in Troubleshooting
      M
      MichaelS
    • RE: MMM-iobroker

      Habe jetzt den Fehler gefunden. Der Status wird mehr jetzt als true für Lich tan und false für Licht aus ausgegeben.

      Allerdings finde ich die Bezeichnungen true und false nicht schön. Lassen die sich ändern in Licht an / Licht aus?

      Wie ist der Code dazu?

      posted in Troubleshooting
      M
      MichaelS
    • MMM-iobroker

      Hallo zusammen,

      ich möchte aus meinem iobroker den Stauts eines Lichtschalters auslesen. (On/Off) und diesen auf dem Spiegel anzeigen lassen.
      Leider sind meine Programmierkenntnisse noch sehr überschaubar.

      Wir muss den die Code Zeile abgeändert werden damit der Status ausgeben wird?

      hier mein aktueller Code aus dem ioBroker Modul:
      devices: [
      { name: 'Braunes_Haus ‘,
      deviceStates: [
      { id: ‘sonoff.0.Braunes_Haus.POWER’, icon: ‘fa-solid fa-toggle-on’, suffix: ’ Licht ist an’ },
      ]

      Danke für die Unterstützung.

      Gruß
      Michael

      posted in Troubleshooting
      M
      MichaelS
    • RE: MMM-IOBROKER

      i Think i have des correct State ID

      f24b929b-214b-4684-82c0-2f435f5402be-image.png

      posted in Troubleshooting
      M
      MichaelS
    • RE: MMM-IOBROKER

      @sdetweil

      i Think ist is.
      b9934582-906d-4a7b-a999-1db6b556c4f8-image.png

      posted in Troubleshooting
      M
      MichaelS
    • MMM-IOBROKER

      Hi guys,

      how can i show the status of a light - On/Off
      In the broker i used the Power Infos with true and false.

      Here my script.

      { name: 'Schwarzes_Haus',
                  deviceStates: [
                                    { id: 'sonoff.0.Schwarze_Haus.POWER', icon: 'fa-solid fa-toggle-on', suffix: 'Ligth is on' },
                                    { id: 'sonoff.0.Schwarze_Haus.POWER', icon: 'fa-solid fa-toogle-off', suffix: 'Light is off' }
                                ]
                },
      

      How can I distinguish the status - On and OFF.

      Thank you.

      posted in Troubleshooting
      M
      MichaelS
    • Probleme beim Anzeigen des iFrame Moduls

      Hallo,

      bin noch relativ unerfahren und versuche 2-3 Module zu installieren. Ich scheitere aber immer wieder daran das die neuen Module nicht angezeigt werden. Die Standardmodule bis auf Wetter gehen.

      Aktuell versuche ich mich am iFrame Modul.
      Hier mal meine config.js

      language: "de",
      timeFormat: 24,
      units: "metric",
      
      modules: [
      	{
      		module: "alert",
      	},
      	{
      		module: "updatenotification",
      		position: "top_bar"
      	},
      	{
      		module: "clock",
      		position: "top_right"
      	},
      	{
      		module: "MMM-iFrame",
      		position: "top_left",	// This can be any of the regions.
      		config: {
      		// See "Configuration options" for more information.
      			url: ["http://192.168.178.223:8082/vis/index.html#TeleconsulterHaus", "ENTER IN URL2"],  // as many URLs you want or you can just ["ENTER IN URL"] if single URL.
      			updateInterval: 0.5 * 60 * 1000, // rotate URLs every 30 seconds
      			width: "100%", // Optional. Default: 100%
      			height: "100px" //Optional. Default: 100px
      			
      		}
      	},
      	{
      		module: "compliments",
      		position: "lower_third"
      	},
      	
      	{
      		module: "newsfeed",
      		position: "bottom_bar",
      		config: {
      			feeds: [
      				{
      					title: "Bild News",
      					url: "http://www.bild.de/rss3-20745882,feed=alles.bild.html"
      				}
      			],
      			showSourceTitle: true,
      			showPublishDate: true
      		}
      	},
      ]
      };
      

      Wenn ich die Seite normal im Browser starte wird sie angezeigt. Auch andere URLs gehen nicht.
      Was mach ich falsch?

      Gruß
      Michael

      posted in Troubleshooting
      M
      MichaelS
    • MMM-iFrame Modul wird nicht angezeigt

      Hallo,

      bin noch relativ unerfahren und versuche 2-3 Module zu installieren. Ich scheitere aber immer wieder daran das die neuen Module nicht angezeigt werden. Die Standardmodule bis auf Wetter gehen.

      Aktuell versuche ich mich am iFrame Modul.
      Hier mal meine config.js

      	language: "de",
      	timeFormat: 24,
      	units: "metric",
      
      	modules: [
      		{
      			module: "alert",
      		},
      		{
      			module: "updatenotification",
      			position: "top_bar"
      		},
      		{
      			module: "clock",
      			position: "top_right"
      		},
      		{
      			module: "MMM-iFrame",
      			position: "top_left",	// This can be any of the regions.
      			config: {
      			// See "Configuration options" for more information.
      				url: ["http://192.168.178.223:8082/vis/index.html#TeleconsulterHaus", "ENTER IN URL2"],  // as many URLs you want or you can just ["ENTER IN URL"] if single URL.
      				updateInterval: 0.5 * 60 * 1000, // rotate URLs every 30 seconds
      				width: "100%", // Optional. Default: 100%
      				height: "100px" //Optional. Default: 100px
      				
      			}
      		},
      		{
      			module: "compliments",
      			position: "lower_third"
      		},
      		
      		{
      			module: "newsfeed",
      			position: "bottom_bar",
      			config: {
      				feeds: [
      					{
      						title: "Bild News",
      						url: "http://www.bild.de/rss3-20745882,feed=alles.bild.html"
      					}
      				],
      				showSourceTitle: true,
      				showPublishDate: true
      			}
      		},
      	]
      
      };
      

      Wenn ich die Seite normal im Browser starte wird sie angezeigt. Auch andere URLs gehen nicht.
      Was mach ich falsch?

      Gruß
      Michael

      posted in Bug Hunt
      M
      MichaelS
    • MagicMirror mit vis vom iO Broker

      Hallo,

      ich habe auf meinem Rasperry parallel den iO Brocker laufen. Über ioBroker vis habe ich mir eine Oberfläche erstellt mit der ich die Lampen im Haus ein und ausschalten kann.

      Ich würde das gerne auf meinem Spiegel integrieren sodass wenn ich morgen ausser Haus gehe der Spiegel mir sagt wo noch Licht an ist. Über die vis Oberfläche lässt sich das per Touch ausschalten.

      Lässt sich das integrieren?

      Gruß
      Michael

      posted in Requests
      M
      MichaelS
    • RE: Current Weather do not display

      @MichaelS said in Current Weather do not display:

      www.openweathermap.org/help/city_list.txt

      No, i try it before.

      posted in Troubleshooting
      M
      MichaelS
    • Current Weather do not display

      Hi,

      first, my English is not so good but i try to explain my problem.

      The Weather Forecast do not displayed an i dont know why.
      Here is my confi.js

      var config = {
      	address: "localhost", // Address to listen on, can be:
      	                      // - "localhost", "127.0.0.1", "::1" to listen on loopback interface
      	                      // - another specific IPv4/6 to listen on a specific interface
      	                      // - "", "0.0.0.0", "::" to listen on any interface
      	                      // Default, when address config is left out, is "localhost"
      	port: 8080,
      	ipWhitelist: ["127.0.0.1", "::ffff:127.0.0.1", "::1"], // Set [] to allow all IP addresses
      	                                                       // or add a specific IPv4 of 192.168.1.5 :
      	                                                       // ["127.0.0.1", "::ffff:127.0.0.1", "::1", "::ffff:192.168.1.5"],
      	                                                       // or IPv4 range of 192.168.3.0 --> 192.168.3.15 use CIDR format :
      	                                                       // ["127.0.0.1", "::ffff:127.0.0.1", "::1", "::ffff:192.168.3.0/28"],
      
      	language: "de",
      	timeFormat: 24,
      	units: "metric",
      
      	modules: [
      		{
      			module: "alert",
      		},
      		
      		{
      			module: "updatenotification",
      			position: "top_bar"
      		},
      		{
      			module: "clock",
      			position: "top_right"
      		},
      		
      		{
      			module: "compliments",
      			position: "lower_third"
      		},
      	
      		{
      			module: "currentweather",
      			position: "top_left",
      			config: {
      				location: "",
      				locationID: "2867714",  //ID from http://www.openweathermap.org/help/city_list.txt
      				appid: "2403028866217760c034e4e08bc4d45a"
      			}
      		},
      		
      		{
      			module: "newsfeed",
      			position: "bottom_bar",
      			config: {
      				feeds: [
      					{
      						title: "aktuelle Nachrichten",
      						url: "https://www.bild.de/rss-feeds/rss-16725492,feed=news.bild.html"
      					}
      				],
      				showSourceTitle: true,
      				showPublishDate: true
      			}
      		},
      	]
      
      };
      

      Who can help to fix the problem?

      posted in Troubleshooting
      M
      MichaelS
    • Kamera Modul

      Ich habe schon einigemale die 3rd Party Module duchstöbert und entweder bin ich blind oder gibt es kein Modul was das Kamera Bild der Raspberry Kamera anzeigt.

      Die Idee wäre eine Türsprechanlage zu bauen bei der das Kamerabild nach Druck auf den Klingelnopf (natürlich am Raspberry angeschlossen) auf dem Spiegel angezeigt wird.

      Gibt es sowas oder etwas ähnliches auf das sich aufsetzen lässt?

      posted in Requests
      M
      MichaelS
    • RE: Weather module not getting shown

      @idoodler said in Wetter wird nicht angezigt:

      pm2 restart MagicMirror && pm2 log MagicMirror

      Hier bekomme ich nur eine Fehlermeldung: Kommando nicht gefunden

      pi@Door:~/MagicMirror $ npm start
      
      > magicmirror@2.3.1 start /home/pi/MagicMirror
      > sh run-start.sh
      
      Starting MagicMirror: v2.3.1
      Loading config ...
      Loading module helpers ...
      No helper found for module: alert.
      Initializing new module helper ...
      Module helper loaded: updatenotification
      No helper found for module: clock.
      No helper found for module: compliments.
      No helper found for module: currentweather.
      No helper found for module: weatherforecast.
      Initializing new module helper ...
      Module helper loaded: newsfeed
      All module helpers loaded.
      Starting server on port 8080 ... 
      Server started ...
      Connecting socket for: updatenotification
      Connecting socket for: newsfeed
      Starting module: newsfeed
      Sockets connected & modules started ...
      Launching application.
      Create new news fetcher for url: https://www.bild.de/rss-feeds/rss-16725492,feed=news.bild.html - Interval: 300000
      Shutting down server...
      Stopping module helper: updatenotification
      Stopping module helper: newsfeed
      pi@Door:~/MagicMirror $ pm2 restart MagicMirror && pm2 log MagicMirror
      bash: pm2: Kommando nicht gefunden.
      pi@Door:~/MagicMirror $ 
      

      Ist es normal das die Helper Module nicht gefunden werden?

      posted in Troubleshooting
      M
      MichaelS
    • RE: Weather module not getting shown

      Uhrzeit, News und Sprüche werden angezeigt.
      Wetter nach wie vor nicht.

      posted in Troubleshooting
      M
      MichaelS
    • RE: Weather module not getting shown

      Warum umbenennen?
      Das habe ich nicht gemacht

      posted in Troubleshooting
      M
      MichaelS
    • RE: Weather module not getting shown

      hier ist meine config Datei

      var config = {
      	address: "localhost", // Address to listen on, can be:
      	                      // - "localhost", "127.0.0.1", "::1" to listen on loopback interface
      	                      // - another specific IPv4/6 to listen on a specific interface
      	                      // - "", "0.0.0.0", "::" to listen on any interface
      	                      // Default, when address config is left out, is "localhost"
      	port: 8080,
      	ipWhitelist: ["127.0.0.1", "::ffff:127.0.0.1", "::1"], // Set [] to allow all IP addresses
      	                                                       // or add a specific IPv4 of 192.168.1.5 :
      	                                                       // ["127.0.0.1", "::ffff:127.0.0.1", "::1", "::ffff:192.168.1.5"],
      	                                                       // or IPv4 range of 192.168.3.0 --> 192.168.3.15 use CIDR format :
      	                                                       // ["127.0.0.1", "::ffff:127.0.0.1", "::1", "::ffff:192.168.3.0/28"],
      
      	language: "de",
      	timeFormat: 24,
      	units: "metric",
      
      	modules: [
      		{
      			module: "alert",
      		},
      		{
      			module: "updatenotification",
      			position: "top_bar"
      		},
      		{
      			module: "clock",
      			position: "top_right"
      		},
      		
      		{
      			module: "compliments",
      			position: "lower_third"
      		},
      		{
      			module: "currentweather",
      			position: "top_left",
      			config: {
      				location: "***",
      				locationID: "****",  //ID from http://www.openweathermap.org/help/city_list.txt
      				appid: "****"
      			}
      		},
      		{
      			module: "weatherforecast",
      			position: "top_left",
      			header: "Weather Forecast",
      			config: {
      				location: "***",
      				locationID: "***",  //ID from http://www.openweathermap.org/help/city_list.txt
      				appid: "****"
      			}
      		},
      		{
      			module: "newsfeed",
      			position: "bottom_bar",
      			config: {
      				feeds: [
      					{
      						title: "aktuelle Nachrichten",
      						url: "https://www.bild.de/rss-feeds/rss-16725492,feed=news.bild.html"
      					}
      				],
      				showSourceTitle: true,
      				showPublishDate: true
      			}
      		},
      	]
      
      };
      
      posted in Troubleshooting
      M
      MichaelS
    • Weather module not getting shown

      Nach der Grundinstallation fehlt mir die Wetteranzeige und die Wettervorhersage.
      Beide Werte werden im Spiegel nicht angezeigt obwohl diese als Standardmodule mitinstalliert wurden.

      Mir ist nicht ganz klar ob hier was angepasst werden muss ausser den API’s.
      Hat jemand eine Idee?

      posted in Troubleshooting
      M
      MichaelS
    • Das Modul "current weather" fehlt

      Das “Corrent Weather” Modul wie auch das “Weather Forecast” Modul wird bei mit nicht angezeigt.
      Ich habe mir die Standortdaten und die API besorgt aber ohne Erfolg.
      Das Modul ist ja bereits vorinstalliert.
      Was mache ich falsch?

      posted in Troubleshooting
      M
      MichaelS
    • RE: electron: not found

      @yawns said in electron: not found:

      npm install

      jetz geht es. Hat etwas gedauert.
      Danke

      posted in Troubleshooting
      M
      MichaelS
    • 1
    • 2
    • 1 / 2