@zulep This semes off topic. This forum is for the MagicMirror project, not for what ever this is.
Read the statement by Michael Teeuw here.

Posts
-
RE: Need to repair two touchscreens
-
RE: Switch off the display - how to ?
@howi42 What module do you use for your PIR sensor? Some modules are able to directly control a Relais for the monitors power supply.
-
RE: I cant seem to insall 3rd party modules correctly, what am i doing wrong?
@jiggly I have had the same undervoltage issue when trying to access 5V from the monitors power supply, which just supplied to less power. Switching to a 2A 5V power supply solved the issue
-
RE: MMM-forecast-io -- Localized up to the minute weather
@paulocarrasco Thats an easy one:) You are missing an
,
after'my api key'
.Here is the correct config:
{ module: 'MMM-forecast-io', position: 'top_right', // This can be any of the regions. config: { // See 'Configuration options' for more information. apiKey: 'my api key', // Dark Sky API key. // Only required if geolocation doesn't work: latitude: 37.1468, longitude: -8.5846 } },
-
RE: MMM-NOAA
@core You can open the MagicMirror Interface in Chrome on your desktop, open the Development Tools („F12“ on Windows) head over to „Console“ and check for anything red.
-
RE: Compliments - remoteFile - How to?!
@schlachtkreuzer6 I’m a bit late to the party, but he path is correct. You just have to define
remote_compliments.json
like this.module: 'compliments', position: 'lower_third', config: { updateInterval: 15000, compliments: { remoteFile: 'remote_compliments.json', morning: [ 'Guten Morgen!', 'Wie hast du geschlafen?', 'Ich wünsche dir einen schönen Tag!' ], ...
-
RE: Connecting Monitor without raspi
@jtmoore81 You are welcome. Please keep us up to date, what you choose :thumbs_up:
-
RE: Module Sending notification to a python project
@bimbim2401 I am not a Python guy either. Start small, create a simple Python script that establishes a Websocket connection, then interprete the websocket messages and so on…