@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.jsonlike 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…
-
RE: Trouble with python script for ultrasonic mudule HC-SR04
@mymirror Funny story. Last Thursday I found the same issue in the production code of a project I am working on in my real live job, which lead to an really wired issue.
That was the biggest facepalm ever:weary_face:
And the ultra sonic sensor is clicking itself. The sensor is just a speaker and an microphone. The speaker is clicking constantly and the microphone is picking up the clicking. I am pretty jung, it would drive me crazy if I have to sleep, or stay here the sensor for a long time. But with increasing age humans won’t hear it anymore. But I think animals like cats, dogs, birds, … do hear it better.
The more you know :sign_of_the_horns:
-
RE: Error: ENOENT: no such file or directory, open 'package.json'
@cruunnerr @Mykle1 You both are right.
@cruunnerr is executing the Shell script, which must be executed in the same directory as the script is located in, except you define the path in the
pm2command like thispm2 start /path/to/script.sh(also given, the script used absolute paths, or can handle the “remote” execution)@Mykle1 You are executing the
pm2“deamon”, which can be executed everywhere -
RE: Trouble with python script for ultrasonic mudule HC-SR04
@mymirror What is your log saying? I am not that fluent in Python, but in the last
elifyou assignCounterthe value100. The seems not right.Its an Ultrasonic sensor, so do you still hear the clicking noise after 1 or 2 days?
-
RE: Mey's Mirror 1.5m x 0.67m
@meyraa Hey, Mey! Thats a really big and nice mirror! Thanks for sharing your project:thumbs_up:
-
RE: MMM-NOAA
@core Can you remove
MMM-Fulefrom your `config.json. There is an unhandled error with this module. -
RE: MMM-forecast.io = Geolocation
@michshav Hey, did this solve your problem?
-
RE: Connecting Monitor without raspi
@jtmoore81 I think you have two options:
Option 1:
You could use your VM as a MagicMirror Server and then buy a cheap computer like an Raspberry Pi Zero W, that can be attached to your monitor without a big foot print. The Raspbery Pi Zero W will run MagicMirror Client.Option 2:
Just buy a cheap HDMI to RJ45 adapter. Connect the HDMI adapter to your Host machine and map the HDMI port to your VM. -
RE: How do I "commit" changes to allow an update
@pierrepi Thats exactly why you don’t make any lokal changes to the project files without forking.
I realy recogmend you to create a fork of every submodule you edit. This makes updating much easier.
-
RE: MMM-NOAA
@core Did you just execute
npm start devin your Raspberry Pi’s home directory?Follow the steps to successfully execute the command:
- Stop any instance of MagicMirror (
pm2 stop MagicMirrorif you usepm2) cd MagicMirror-> You need to go into the MagicMirror directory- Start MagicMirror with Dev Tools
- If you are connected via SSH:
DISPLAY=:0 nohup npm start dev & - If you are directly on your Raspberry Pi:
npm start dev
- If you are connected via SSH:
- Stop any instance of MagicMirror (