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

    Posts

    Recent Best Controversial
    • RE: VGA (not a HDMI) sleep via PIR-Sensor

      @bdream
      There are two Pir Sensor Modules. I use MMM-PIR-Sensor. Maybe this helps.
      AxLED

      posted in Show your Mirror
      A
      AxLed
    • RE: VGA (not a HDMI) sleep via PIR-Sensor

      @bdream
      I use MMM-PIR-Sensor successful on my mirror (i also have a VGA Monitor connected via an HDMI Adapter) to safe power.

      For your “safe power in the night” you can use another module, check MMM-ModuleScheduler (for scheduling) in combination with MMM-Remote-Control (for interaktions like monitor on/off).

      AxLED

      posted in Show your Mirror
      A
      AxLed
    • RE: Change MMM-Page page using MMM-PIR

      @aunrea
      Your request should be possible, check the following module MMM-NotificationTrigger.

      As MMM-PIR uses USER_PRESENCEwith values true and false, you can convert the notifications with MMM-NotificationTrigger to control MMM-Page.

      AxLED

      posted in Troubleshooting
      A
      AxLed
    • RE: Magic Mirror only shows black screen

      @maddinmirror
      Can you post your config? Make sure all private key or calendar links are removed or changed (xxx) before posting.
      AxLED

      posted in Troubleshooting
      A
      AxLed
    • RE: MMM_Webradio

      @Aries1984
      I have a tip for your point 4.
      I saw you are using notification system for your module, take a look at my module MMM-Navigate, it uses a rotary encoder to get some interaction with mm. So sending notifications play/pause or prev/next station or volumeup/down is no problem.

      AxLED

      posted in Entertainment
      A
      AxLed
    • RE: RPie reboots when switching roomlights on/off

      @Frühstück
      I had a similar problem with a button connected to the GPIO Pins. In my case the button/pi/gpio reacted if i switched on a roomlight (which has nothing to do with my pi), even nothing was pressed at the pi.
      I think the cause of your problem could be the “main power switch” of your pi case. Is this connected to the gpio pins and was there a script which was delivered with the case?
      A helpful search string for google could be “interference raspberry pi gpio”.

      In my case some capacitors at the gpio wiring was the solution.

      AxLED

      posted in Troubleshooting
      A
      AxLed
    • RE: Filter events on the Calendar module

      @pedromrsantos
      A workaround could be to use separat calendar for meetings and presentations only.
      AxLED

      posted in Bug Hunt
      A
      AxLed
    • RE: MMM-Navigate, Navigation inside MagicMirror with Rotary Encoder

      @Eisblume
      You need two things:

      • first: a modules which is able to stream 100Sec Tagesschau, i made a fork see MMM-Podcast2
      • second: the right config (i posting only the relevant part)
      ....
      {
      			module: 'MMM-Podcast2',
      			config: {
      				// See 'Configuration options' for more information.
      				omxargs: ' --win 0,0,1920,1080  -o both '
      			}
      		},
      {
      			module: "MMM-Navigate",
      			header: "Navigation",
      			position: "top_right",
      			config: {
      					Alias: [
      						'Tagesschau 100 Sekunden',
      						'Herunterfahren'
      					],
      					Action: [
      						{notification:'BUTTON_PRESSED',payload:''},
      						{notification: "REMOTE_ACTION", payload: {action: "SHUTDOWN"}}
      					],
      					GPIOPins: [26,20,19]//rotary cw, rotary ccw, rotary press (BCM Numbering)
      					},
      		},
      ...
      

      AxLED

      posted in System
      A
      AxLed
    • RE: MMM-Navigate, Navigation inside MagicMirror with Rotary Encoder

      @Eisblume
      No Problem, i am glad it works for you now, so you also did your first coding experiance.

      AxLED

      posted in System
      A
      AxLed
    • RE: MMM-Navigate, Navigation inside MagicMirror with Rotary Encoder

      @Eisblume
      Thanks for your reply, i tested at my pi with disconnected ground cable, but there is no press, cw or ccw working at all.
      My last ideas:

      • can you messure your 5 cables if maybe one is interrupted
      • maybe there are two versions of KY-040 on the marked, i have this one Amazon
      • is your second rotary encoder shows same symptoms?
      • did you connect + of rotary encoder to 5V once (which would be wrong and maybe damaged your GPIO PINs/chip)?

      AxLED

      posted in System
      A
      AxLed
    • RE: MMM-Navigate, Navigation inside MagicMirror with Rotary Encoder

      @Eisblume
      I tested wih modules of your config.

      My testconfiguration:

      • Raspberry Pi 1
      • MagicMirror v2.7.1
      • npm v6.8.0
      • node v8.9.0
      • no electron (as i dont run/installable on Pi 1), i run node serveronly
      • display: Webbrowser

      My rotary encoder works as follows:

      • Seite blättern (press works and gives a red frame an a lock sign, cw an ccw dont work, as MMM-Pages isnt part of your config)
      • News (mehr/weniger Details) (press works and gives a red frame an a lock sign, cw an ccw works)
      • Test notification (press works, no cw or ccw functionality by design)
      • News - mehr Details (press works, no cw or ccw functionality by design)
      • News - weniger Details (press works, no cw or ccw functionality by design)
      • Neustart MagicMirror (PM2) (dont work in my testconfiguration, as i dont use PM on RPI1)
      • Neustart (press works, there is a pop up notification to press twice for reeboot, requires MMM-Remote-Control)
      • Herunterfahren (press works, there is a pop up notification to press twice for shutdown, requires MMM-Remote-Control)

      Two ideas:

      • wrong cabeling, here are the 3 pins for CW, CW and PRESS of your config.js (GPIOPins: [26,20,19])
        0_1558555492514_bmc.JPG
      • messed up setup, try to save your config and reinstall raspian an MM

      Greets

      AxLED

      posted in System
      A
      AxLed
    • RE: MMM-Navigate, Navigation inside MagicMirror with Rotary Encoder

      @Eisblume
      Please post your config and make sure your private keys are x-ed. So i can try to copy your setup to my test pi and maybe find out whats the reason. That your rotary encoder generally works is good to know.
      AxLED

      posted in System
      A
      AxLed
    • RE: MMM-Navigate, Navigation inside MagicMirror with Rotary Encoder

      @Eisblume
      I found the line in node_helper.js, its line 35

      const C = new Gpio(self.config.GPIOPins[2], 'in', 'both',{debounceTimeout : 20 }); //BCM Pin 19
      

      Here you can try to increase/reduce the debounceTimeout between 10 and 50 (in steps of 10) and see if there is a difference for your “pressed” problem.

      AxLED

      posted in System
      A
      AxLed
    • RE: MMM-Navigate, Navigation inside MagicMirror with Rotary Encoder

      @Eisblume
      Conflicts with other modules are possible, but i dont think so, because press on cw/ccw works. You can try to change debounce time in node helper (i think, i am not sure about as i am on the road right now). I will check for the final line in node helper and let you know if i am in front of my computer.
      AxLED

      posted in System
      A
      AxLed
    • RE: MMM-Navigate, Navigation inside MagicMirror with Rotary Encoder

      @Eisblume
      So the pin is correct. Some ideas.
      Press contains two operations, pressing and release. Did you try press and release in different speeds?
      How long are your cables between rotary and pi? Could also be a debouncing problem. Which pi are you using? (I tested the module on pi 1 and pi 3).
      AxLED

      posted in System
      A
      AxLed
    • RE: MMM-Navigate, Navigation inside MagicMirror with Rotary Encoder

      @Eisblume
      You can also try to put clockwise or counterclockwise signal on pin 19 for testing, so cw or ccw should send the press command. So you can make sure if press switch of your rotary encoder is bad.
      AxLED

      posted in System
      A
      AxLed
    • RE: MMM-Navigate, Navigation inside MagicMirror with Rotary Encoder

      @Eisblume
      Did you use the right Pin (either in config or on the pi) for the ‘press’ signal of the rotary encoder?
      Is the module MMM-Remote-Control installed and working?
      AxLED

      posted in System
      A
      AxLed
    • RE: New weather module: Undefined header, invalid date

      @Canterrain
      For your second problem about the days, the documentation says it has to be maxNumberOfDays instead of days.

      AxLED

      posted in Troubleshooting
      A
      AxLed
    • RE: [MMM-Dreambox] to connect a Dreambox or a Enigma2 Receiver (like VU or VU+) to MagicMirror and stream stations via omxplayer

      @Eisblume
      I am glad the module works for you.
      Have fun.

      Greets

      AxLED

      posted in Entertainment
      A
      AxLed
    • RE: [MMM-Dreambox] to connect a Dreambox or a Enigma2 Receiver (like VU or VU+) to MagicMirror and stream stations via omxplayer

      @Eisblume
      I have some ideas and need your feedback:

      • is there a special reason why you are using the dev branch? If not, try the master branch instead
      • is streaming of recordings working?
      • your log shows that omx player is doing something, please consider it takes up to 15 seconds before a stream starts after you send DB-Play
      • are your enigma2 settings on your VU like this (similar, the following screenshot is of a Dreambox DM800SE with a oozoon image):
        0_1557941727960_DM800SE_Screenshot1.JPG

      AxLED

      posted in Entertainment
      A
      AxLed
    • 1
    • 2
    • 3
    • 4
    • 5
    • 11
    • 12
    • 2 / 12