Navigation

    MagicMirror Forum

    • Register
    • Login
    • Search
    • Recent
    • Tags
    • Unsolved
    • Solved
    • MagicMirror² Repository
    • Documentation
    • Donate
    • Discord
    1. Home
    2. AxLed
    A
    • Profile
    • Following 0
    • Followers 1
    • Topics 16
    • Posts 234
    • Best 20
    • Groups 1

    AxLed

    @AxLed

    Module Developer

    25
    Reputation
    3231
    Profile views
    234
    Posts
    1
    Followers
    0
    Following
    Joined Last Online

    AxLed Follow
    Module Developer

    Best posts made by AxLed

    • [MMM-Dreambox] to connect a Dreambox or a Enigma2 Receiver (like VU or VU+) to MagicMirror and stream stations via omxplayer

      Here is my second module.

      Description
      A module to connect a Dreambox or a Enigma2 Receiver (like VU or VU+) to MagicMirror. You can select services of your dreambox and stream them via omxplayer. The module shows some further informations like:

      • model of your dreambox
      • which service is tuned right now / are there active timer
      • epg for the services with its starting time

      Magic-Mirror Module MMM-Dreambox screenshot1

      Download

      Please let me know what you think.

      AxLED

      posted in Entertainment
      A
      AxLed
    • RE: Using Unicode Character and symbols in module

      Hi to all,

      i found a solution.
      0_1536262932769_lock.JPG

      I use font awesome (which comes with mm anyway) an the following css:

      .fa-lock1:after {
                  content: "\f023";
                }
      

      AxLED

      posted in Development
      A
      AxLed
    • RE: "HIDE" and/or "SHOW" modules automatically...

      @justjim1220
      The modules you can use are:
      MMM-Remote-Control (to show/hide modules)
      MMM-ModuleSchedulert (to define when you would like to do this

      But there are some more modules in the MM Cosmos.

      AxLED

      posted in General Discussion
      A
      AxLed
    • RE: Fifa World Cup overview

      Hi to all,

      i found a different solution: https://github.com/LukeSkywalker92/MMM-SoccerLiveScore with some modifications.

      node_helper.js:
      change the hyperlinks (or only the …/ta/… part of the links in node_helper.js to …/em4/…)
      Example, Line 52:
      Change

      url: 'https://www.ta4-data.de/ta/data/competitions',
      

      to

      url: 'https://www.ta4-data.de/em4/data/competitions',
      

      Do the replacements on the 5 hyperlinks in node_helper, and here you go.

      config.js
      The league id for WM ist 4000

      {
      			module: "MMM-SoccerLiveScore",
      			position: "top_left",
      			header: "Live-Scores",
      			config: {
      				leagues: [4000],
              			showNames: true,
              			showLogos: true,
              			displayTime: 60 * 1000,
              			showTables: true
      				}
      		},
      

      Pictures:
      0_1529014299763_wm2018_1.JPG
      0_1529014318658_wm2018_2.JPG

      AxLED

      posted in Requests
      A
      AxLed
    • RE: How can i pass query / parameters from URL to module

      @sdetweil
      @Sean
      Thanks for your quick response, you are faster than my programming timeslots in my “mancave” are. Today i had some time and got it working.

      I will test my module changes (for MMM-Navigate) on my mirror for some days, maybe i find some errors and can fix them before i upload it to quick to github in a poor “quality”.

      My intension was to get rid of MMM-Remote-Control in my installation, as i found errors (while a new install of my MM) and as it seems that MMM-Remote-Control is not maintainanced anymore.

      I added following features to MMM-Navigate:

      • Raspberry operations: any Shellcommands, i use it for
        • restart of MM (pm2 restart mm)
        • restart of Raspberry (sudo shutdown -h now)
        • reboot of Raspberry (sudo reboot)
      • controlling MM by URL Calls (if you dont have a rotary encoder connected or while programming)

      stay healthy

      Regards

      AxLED

      posted in Development
      A
      AxLed
    • RE: MMM-ModuleScheduler (how to use MMM-RemoteControl to HIDE/SHOW modules)?

      @blup said in MMM-ModuleScheduler (how to use MMM-RemoteControl to HIDE/SHOW modules)?:

      {notification: ‘REMOTE_ACTION’, schedule: ‘0 6 * * MON-FRI’, payload: {action: “SHOW&module=module_15_MMM-Traffic”}},

      Hi Peter,

      1st Tip:
      I think your syntax in config.js is wrong.
      You use:

      {notification: 'REMOTE_ACTION', schedule: '0 6 * * MON-FRI', payload: {action: "SHOW&module=module_15_MMM-Traffic"}},
      

      and i think (didnt test it) it should be

      {notification: 'REMOTE_ACTION', schedule: '0 6 * * MON-FRI', payload: {action: "SHOW", module: "module_15_MMM-Traffic"}},
      

      2nd Tip:
      Have you checked the config options of MMM-Traffic, see this entries:

      showWeekend, startHr, endHr, hideOffHours
      

      AxLED

      posted in Troubleshooting
      A
      AxLed
    • RE: Problem with MMM-Button

      Here you go:
      https://github.com/ptrbld/MMM-Button
      and
      https://github.com/Jopyth/MMM-Buttons

      AxLED

      posted in Troubleshooting
      A
      AxLed
    • RE: [MMM-Buttons] Connect multiple buttons to send configurable notifications

      @cruunnerr
      Thanks for the tips, you made my day, it works now.
      What i did: Changed the wiring from negativ (GND) to 3.3V (with resistor) as shown on picture of cruunnerr wiring diagram.

      No i try to get a rotary switch and got it working, as i need some WAF (Woman acceptance faktor) for my mirror.

      Regards

      AxLED

      posted in System
      A
      AxLed
    • RE: Timetable with (almost) static data

      So, now i installed apache2 and php on my test system (ubuntu vm). I got a first solution with a .php site (running on same machine) and MMM-iFrame pointing to local php site.

      Here is a first screenshot:
      0_1516830260556_timetable.JPG

      My Webfolder looks like this:
      0_1516830359419_www-folder.JPG

      • index.html (comes from apache2)
      • phpinfo.php (was a testfile to check if php works)
      • timetable.php (is my php site, which reads the datas of timetable.csv, so it is easier to change datas once a year)

      Right now i am fighting with css and formatting, but the first steps are made.

      I am not sure what the performance on RPI will be with apache2 and php running next to MM2.

      Axled

      posted in Requests
      A
      AxLed
    • RE: MMM-MyWeather doesn't show up

      @SoleLo
      try to remove the quotes around the values true and false inside your Module MMM-MyWeather config.
      For example:

      coloricon: true,
      

      instead of

      coloricon: "true",
      

      AxLED

      posted in Troubleshooting
      A
      AxLed

    Latest posts made by AxLed

    • RE: MMM-Navigate, Navigation inside MagicMirror with Rotary Encoder

      @keineAhnung123,

      great to hear it works, i will update the readme at github.
      The line in config.txt only tells the pi at boottime, that GPIO16 is set to input and the internal resistor is set to pullup. So there is nothing else to know unless you change your GPIO Pins for something else.
      @Eisblume maybe this is a solution for your issue.

      AxLED

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

      @keineAhnung123 ,

      thanks for your patience.
      to first:
      it seems to be something with the pullup / pulldown resistors, see also https://github.com/fivdi/onoff#configuring-pullup-and-pulldown-resistors
      See also the new “gpio” config command (https://www.raspberrypi.org/forums/viewtopic.php?f=117&t=208748)
      So here is another idea, can you try (based on informations mentione above):

      • (i suppose your SW pin is 16)
      • add following line in /boot/config.txt
        gpio=16=ip,pu
        Meaning: sets your GPIO 16 as input (ip) and pull up (pu)
      • if this doesnt work try:
        gpio=16=ip,pd
        Meaning: sets your GPIO 16 as input (ip) and pull down (pd)

      Maybe this way MMM-Navigate works without the python script.

      To SW.watch you mentioned, this is ok, as i dont need to know the initial state of SW.

      to third:

      • i added the line in node_helper.js in the github repo.

      Regards

      AxLED

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

      @keineAhnung123 ,

      informations to your second issue:
      Your request is not provided by MMM-Navigate, maybe it is possible with one of the following modules (untested):

      • MMM-ModuleScheduler
      • MMM-ModuleToggle

      AxLED

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

      @keineAhnung123,

      thanks for feedback.
      first:
      Idea A:

      • maybe the pin 19 is the problem, because it is not only a GPIO pin rather it has SPI features. Can you change to BCM16 (and change it in config.js as well) and try it?

      Idea B:

      • Do you use capacitors for debouncing? If not, you can change debouncing value of following line: https://github.com/Ax-LED/MMM-Navigate/blob/master/node_helper.js#L37

      second:

      • Which module should start hidden? MMM-Navigate?

      third:
      I tried to reproduce on my pi 3 and get no error, so i checked the code.
      You can add following line as new line 19 in node_helper.js
      var lastdir = '';

      AxLED

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

      @keineAhnung123,

      to your first issue:

      • is only click not working or is rotation also not working?
        Because rotation and click (Button press) uses the same library (onOff).
      • on which pin is click connected, as the pi GPIO Pins have different features?
      • what versions you are using (pi, OS, MM-Version)?

      To your second issue.

      • MMM-Navigate uses the MM notification system, so you can do almost everything you want. What are you trying to to, maybe i can give you a sample for your config.js
      • for shortening time of hidding see MM Docs -> search for hide, there is a parameter for speed.

      Regards

      AxLED

      posted in System
      A
      AxLed
    • MMM-Navigate - V1.3 released

      Dear MagicMirror user,

      today i released version 1.3 of MMM-Navigate

      1.3 Changelog:

      • added some functions to no longer have a dependency to MMM-Remote-Control

        • SHELLCOMMAND
          Executes code in a terminal of you pi, so you can do almost everything you want. Example you want to shutdown your pi; Config: {notification: ‘SHELLCOMMAND’, payload:‘sudo shutdown -h now’}

        • module is now listening to yourmmip:8080/MMM-Navigate/remote?

      Download: MMM-Navigate

      Regards

      AxLED

      posted in Utilities
      A
      AxLed
    • RE: MMM-Navigate - V1.4 released

      @Mrtrol2013
      i never tried what you are expecting to do. For me a navigation (f.e. on a website) doesnt change either. You can give it a try with duplicates.

      AxLED

      posted in Utilities
      A
      AxLed
    • RE: MMM-Navigate - V1.4 released

      Dear MagicMirror user,

      today i released version 1.4 of MMM-Navigate

      1.4 Changelog:

      • changed code for better recognition of the rotary encoder
      • changed code enables faster movement of the rotary

      Download: MMM-Navigate

      Regards

      AxLED

      posted in Utilities
      A
      AxLed
    • RE: How can i pass query / parameters from URL to module

      Hi,

      testing completed, today i uploaded new release to github.
      MMM-Navigate - V1.3 released

      Regards

      AxLED

      posted in Development
      A
      AxLed
    • MMM-Navigate - V1.4 released

      Dear MagicMirror user,

      today i released version 1.3 of MMM-Navigate

      1.3 Changelog:

      • added some functions to no longer have a dependency to MMM-Remote-Control

        • SHELLCOMMAND
          Executes code in a terminal of you pi, so you can do almost everything you want. Example you want to shutdown your pi; Config: {notification: ‘SHELLCOMMAND’, payload:‘sudo shutdown -h now’}

        • module is now listening to yourmmip:8080/MMM-Navigate/remote?

      Download: MMM-Navigate

      Regards

      AxLED

      posted in Utilities
      A
      AxLed