• Recent
  • Tags
  • Unsolved
  • Solved
  • MagicMirror² Repository
  • Documentation
  • 3rd-Party-Modules
  • Donate
  • Discord
  • Register
  • Login
MagicMirror Forum
  • Recent
  • Tags
  • Unsolved
  • Solved
  • MagicMirror² Repository
  • Documentation
  • 3rd-Party-Modules
  • Donate
  • Discord
  • Register
  • Login
  1. Home
  2. AxLed
  3. Topics
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

Topics

  • A

    MMM-Navigate - V1.3 released

    Watching Ignoring Scheduled Pinned Locked Moved Utilities
    1 Dec 5, 2020, 7:11 PM
    Dec 5, 2020, 7:11 PM
    0 Votes
    1 Posts
    297 Views
    A Dec 5, 2020, 7:11 PM
    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 [card: Ax-LED/MMM-Navigate] Regards AxLED
  • A

    MMM-Navigate - V1.4 released

    Watching Ignoring Scheduled Pinned Locked Moved Utilities
    5 May 4, 2020, 7:49 PM
    Apr 9, 2020, 6:00 PM
    0 Votes
    5 Posts
    1k Views
    M May 4, 2020, 7:49 PM
    @AxLed dear friend, please tell me why when you select “News (mehr/weniger Details)” and double-turn the encoder, the browser opens with an error
  • A

    How can i pass query / parameters from URL to module

    Watching Ignoring Scheduled Pinned Locked Moved Solved Development
    12 Apr 9, 2020, 6:06 PM
    Mar 29, 2020, 11:59 AM
    0 Votes
    12 Posts
    3k Views
    A Apr 9, 2020, 6:06 PM
    Hi, testing completed, today i uploaded new release to github. MMM-Navigate - V1.3 released Regards AxLED
  • A

    MMM-Dreambox, Version 2.0 released

    Watching Ignoring Scheduled Pinned Locked Moved Entertainment
    1 Mar 3, 2019, 7:54 PM
    Mar 3, 2019, 7:54 PM
    1 Votes
    1 Posts
    1k Views
    A Mar 3, 2019, 7:54 PM
    Hi to all MagicMirror users, i just released Version 2 of my MMM-Dreambox module. Download [card:Ax-LED/MMM-Dreambox] 2.0 Changelog: optimized configuration options, to reduce complexity (see also minimum configuration in readme of module) added recordings mode (to stream recordings of your tuner to magic mirror) extended notification system to select recordings and tuner mode Update: Do a git pull in the MMM-Dreambox directory. Thanks to @evroom for testing on different enigma2 receivers. AxLED
  • A

    How do you convert xml to json (ideally without dependencies)

    Watching Ignoring Scheduled Pinned Locked Moved Development
    7 Feb 18, 2019, 8:57 PM
    Feb 18, 2019, 11:26 AM
    0 Votes
    7 Posts
    2k Views
    A Feb 18, 2019, 8:57 PM
    @sdetweil @cowboysdude @lavolp3 Thanks for your posts, i got some further. i added following line in my node_helper.js const parser = require("./MMM-Dreambox-xml2json.js"); So node_helper.js checks for MMM-Dreambox-xml2json.js within the same directory. After this, i can use a function of MMM-Dreambox-xml2json.js inside of node_helper.js by calling parser.functionname() in my case parser.xml2json(). AxLED
  • A

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

    Watching Ignoring Scheduled Pinned Locked Moved Entertainment
    160 Nov 10, 2022, 10:13 PM
    Dec 27, 2018, 5:15 PM
    2 Votes
    160 Posts
    160k Views
    R Nov 10, 2022, 10:13 PM
    Now I need some help, why doesn’t it show me the EPG info. can I put it in 2 columns next to each other (to save space) with so many channels? and last but not least When you press DB-PLAY it takes about 5-10 seconds until the video comes, can you set a status bar with a sample message until the stream starts: Video coming or similar. Thank you very much And this module is awesome :-) [image: 1668118385122-mmm-dreambox.png]
  • A

    Help needed - getting informations from XML File

    Watching Ignoring Scheduled Pinned Locked Moved Development
    3 Dec 9, 2018, 8:15 PM
    Dec 9, 2018, 9:42 AM
    0 Votes
    3 Posts
    1k Views
    A Dec 9, 2018, 8:15 PM
    @Charley Thanks for your reply and your code in xml2json.js. Now i can get the requested values of my xml and can move forward in developing. If somebody knows a way to directly extract datas of xml could be an optimization afterwards, to reduce code. Regards AxLED
  • A

    script or bash to exit MM and exit GUI and run a command in TTY mode

    Watching Ignoring Scheduled Pinned Locked Moved Development
    4 Nov 7, 2018, 6:12 PM
    Oct 26, 2018, 5:59 PM
    0 Votes
    4 Posts
    2k Views
    A Nov 7, 2018, 6:12 PM
    @Ramez Thanks for your reply, i want to have only one app (either mm or Retropie/Emulationstation) run at one time due the pi ressources. But i will try your approach. AxLED
  • A

    Calendar Module - interaction - scrollable - different start dates

    Watching Ignoring Scheduled Pinned Locked Moved Unsolved Requests
    2 Jun 29, 2018, 7:14 PM
    Jun 27, 2018, 3:53 PM
    0 Votes
    2 Posts
    2k Views
    A Jun 29, 2018, 7:14 PM
    Hi to all, i checked the default calendar module and found an approach: If i manipulate following code: calendar.js, Line 338: var today = moment().startOf("day");’ to var today = moment().subtract(60,'d').startOf("day"); and calendarfetcher.js, Line 74: var today = moment().startOf("day").toDate(); to var today = moment().subtract(60,'d').startOf("day").toDate(); the calendar module of my MM will show calendar entries starting Date of two month ago (today-60 days). Now i have to add following functions: notification received function for ±5 days (for example) manipulate variable today with value of notification received pass variable today to the right place in code of calender.js and calendarfetcher.js refresh module after receiving notification stop sending notification from calendar to other modules, in case variable today is manipulated Sources: https://momentjs.com/docs/#/manipulating/add/ Greets AxLED
  • A

    Using Unicode Character and symbols in module

    Watching Ignoring Scheduled Pinned Locked Moved Development
    2 Sep 6, 2018, 7:43 PM
    May 30, 2018, 6:02 PM
    2
    0 Votes
    2 Posts
    1k Views
    A Sep 6, 2018, 7:43 PM
    Hi to all, i found a solution. [image: 1536262930678-lock.jpg] I use font awesome (which comes with mm anyway) an the following css: .fa-lock1:after { content: "\f023"; } AxLED
  • A

    MMM-Navigate, Navigation inside MagicMirror with Rotary Encoder

    Watching Ignoring Scheduled Pinned Locked Moved System
    45 Nov 30, 2022, 8:24 PM
    May 13, 2018, 6:59 PM
    0 Votes
    45 Posts
    20k Views
    R Nov 30, 2022, 8:24 PM
    @AxLed Hallo, is there a way to deaktivate this Fade out? i want it olways on. Thanks Robi OK Sorry, i found it by my self :-) in MMM-Navigate.js // this.hide(10000);
  • A

    Navigation inside MagicMirror with Buttons / Rotary Encoder on GPIO

    Watching Ignoring Scheduled Pinned Locked Moved Development
    11 May 13, 2018, 7:15 PM
    Mar 30, 2018, 5:01 PM
    1
    0 Votes
    11 Posts
    7k Views
    A May 13, 2018, 7:15 PM
    Hi to all, i finished the first version of my module, detail see: MMM-Navigate AxLED
  • A

    Reverse Lookup MMM-FRITZ-Box-Callmonitor - help needed

    Watching Ignoring Scheduled Pinned Locked Moved Development
    16 Mar 9, 2018, 6:14 PM
    Feb 22, 2018, 9:03 PM
    1
    0 Votes
    16 Posts
    7k Views
    A Mar 9, 2018, 6:14 PM
    Hi pinsdorf, thanks for your reply, here are some answers to your questions: putting the lookup in a own module. => Feel free, you just have to tell me, how i can grant write permissions to you (maybe via PN) i closed my own pull request, as i didnt find any other option Maybe you can also help in fixing this issue: https://github.com/paviro/MMM-FRITZ-Box-Callmonitor/issues/30 Regards AxLED
  • A

    Question to MMM-Swipe (Simon089) and MMM-Pages and MMM-page-indicator

    Watching Ignoring Scheduled Pinned Locked Moved Troubleshooting
    4 Apr 20, 2019, 10:06 PM
    Jan 29, 2018, 8:28 PM
    0 Votes
    4 Posts
    2k Views
    J Apr 20, 2019, 10:06 PM
    I will try that now. Looking forward to seeing it in action.
  • A

    Which Monitor supports Standby (Sleep) / PowerOff / WakeUp via VGA / HDMI Commands

    Watching Ignoring Scheduled Pinned Locked Moved Requests
    1 Jan 27, 2018, 7:14 PM
    Jan 27, 2018, 7:14 PM
    0 Votes
    1 Posts
    1k Views
    A Jan 27, 2018, 7:14 PM
    Hi to all, as i am fighting with Monitor Standby (Sleep) / PowerOff / WakeUp - what do you think about a sticky thread, which monitor supports which modes? So i start with my monitor: Vendor / model: LG 27MP48HQ-p Input: VGA and HDMI VGA: supports Standby (Sleep) and WakeUp HDMI: only supports PowerOff (after deactivating HDMI Signal), no WakeUp possible (only by pressing the physical Powerbutton on monitor). Some Details: I am using Module MMM-PIR-Sensor which enable/disable the hdmi port of my raspberry pi 3 Regards Axled
  • A

    Timetable with (almost) static data

    Watching Ignoring Scheduled Pinned Locked Moved Requests
    16 Jan 28, 2018, 4:34 PM
    Jan 23, 2018, 9:44 PM
    0 Votes
    16 Posts
    8k Views
    A Jan 28, 2018, 4:34 PM
    @pinsdorf Thanks for the link an the name of your module, thats that what i was looking for. I will test it. I like your implementation with “starting time only” and “actual weekday only”, so this saves a lot of space in width to fit better to the other modules. And you are right, if i change datas in an .csv or in a list in the config-file is pretty most the same. Regards Axled
  • 1 / 1
Enjoying MagicMirror? Please consider a donation!
MagicMirror created by Michael Teeuw.
Forum managed by Sam, technical setup by Karsten.
This forum is using NodeBB as its core | Contributors
Contact | Privacy Policy