A New Chapter for MagicMirror: The Community Takes the Lead
Read the statement by Michael Teeuw here.
  • Need help with refactoring charting for a fork of a module.

    16
    0 Votes
    16 Posts
    3k Views
    S
    @jwilson5607 glad u got it working… if I hadn’t done my own chartjs module, I would have had no clue,
  • MMM-GoogleAssistant 4 how to change the wake word?

    7
    0 Votes
    7 Posts
    1k Views
    S
    @bugsounet Thanks a lot for your kind informations.
  • Need some help with a carousel like function

    3
    0 Votes
    3 Posts
    671 Views
    mumblebajM
    @sdetweil Thanks Sam. Will give that a go.
  • Help, I need to send data to the module I am trying to create

    2
    0 Votes
    2 Posts
    605 Views
    S
    @kylelamb1324 see my sample module it’s node helper receives a message and sends one back https://github.com/sdetweil/SampleModule its string identifying the message and some buffer of data, completely up to you, string, number, structure… then on the receiving side u get the identifier, so you can tell different messages apart and a pointer to the buffer sent by the sender socket notifications are private to your module an example use the node_helper does not get any of the info from config.js like the modulename.js does so, typically the first thing would be to send the this.config buffer to the node_helper
  • Change Folder of Logs of PM2 and NPM

    11
    0 Votes
    11 Posts
    5k Views
    S
    @thgmirror and there is a $HOME/.npm folder for npm, but I have no idea what all is stored there, and what needs to be persistent and not
  • PIR Sensor doesnt detect movement

    10
    0 Votes
    10 Posts
    2k Views
    T
    @1BlauNitrox it’s 28 inch lcd monitor. Few years old. Don’t know the model
  • Disable a module with touch screen (or remotely)

    4
    0 Votes
    4 Posts
    891 Views
    S
    @SvenT the module should not update when it is suspended (hidden)
  • MMM-Todoist scrolling list (Marquee)

    3
    1
    0 Votes
    3 Posts
    1k Views
    S
    @MZ-BER lucky it’s a div table and not html table
  • Sending Notification to html-file!?!?

    4
    0 Votes
    4 Posts
    869 Views
    S
    @thgmirror it’s not ‘in an html’ it has to be loaded into a browser. and then u have to export it correctly, and THEN you can call it ft another script.
  • Face Recognition

    3
    0 Votes
    3 Posts
    912 Views
    S
    @sdetweil ok Thank you ❤
  • MMM-PIR-Sensor Guide with Edits and Updates

    20
    7 Votes
    20 Posts
    19k Views
    S
    @bugsounet my apologies. I have deleted the post.
  • 0 Votes
    5 Posts
    946 Views
    S
    @banbutcher there is a little nosql db and lib in one https://www.npmjs.com/package/nosql
  • Help developing first module, displaying webscraped text.

    8
    2
    0 Votes
    8 Posts
    2k Views
    S
    @enderflop cool key here is module name = foldername = filename = register name and node_helper.js has to be in the same folder
  • updateDom() blocks MagicMirror

    28
    1
    0 Votes
    28 Posts
    8k Views
    S
    @1blaunitrox said in updateDom() blocks MagicMirror: I installed the software like in the docs show. my script fixes little odds and ends not covered by the doc
  • Error while starting Magic Mirror

    29
    0 Votes
    29 Posts
    8k Views
    1
    @sdetweil It works btw
  • Help creating a full screen module linked to weather

    5
    0 Votes
    5 Posts
    879 Views
    cowboysdudeC
    @sdetweil Yes he can also look at MMM-EasyBack to see how to do videos
  • Starting from an existing module?

    6
    0 Votes
    6 Posts
    1k Views
    S
    @sifuhall my SampleModule has all the parts. u won’t need the helper if fetch works
  • @bugsounet MMM-GoogleAssistant v3

    8
    7 Votes
    8 Posts
    3k Views
    C
    @telliman http://wiki.bugsounet.fr/en/home
  • Multiple instance module. Scope for a noob.

    Solved scope javascript modules
    4
    0 Votes
    4 Posts
    1k Views
    S
    @birdabirda the config.js info is provided to the modulename.js instance. this is object oriented programming each unique instance is pointed to by ‘this’. think of node_helper as a server. . but it’s responses are broadcast to ALL instances. so each instance needs to pass it’s identifier as part of the data on each sendsocketNotifocation then the node helper has to keep track of that and send that back as part of the response then each modulename instance has to check to see if the response is for them. you can store the data in a hash by instance id.
  • How to send notification to module via external REST API call?

    9
    0 Votes
    9 Posts
    2k Views
    S
    @mumblebaj Log.log is just a wrapper for console.log, which lets mm do the loglevel settings in config.js