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

    Posts

    Recent Best Controversial
    • Acer Aspire z3101 Screen [Requesting Info]

      Hi,
      I have been wanting to make a touch screen mirror for a while now. So today I bought an aspire z3101 all in one computer to get started (because it was cheap). I’ve been looking online for ages to see which type of touch screen it has, can anyone shed some light on this for me?

      Thanks,
      Seann.

      posted in Hardware
      S
      Seann
    • RE: Prioritize loading specific module

      @lavolp3 I have done that :)

      posted in Development
      S
      Seann
    • RE: Prioritize loading specific module

      @lavolp3 Here :)

      posted in Development
      S
      Seann
    • MMM-Console

      MMM-Console - On screen console output.


      I created this module to give more of a "nerdy" feel to my mirror. Displaying the developers console log directly to the mirror.

      For the moment it's quite basic. The current config only allows you to change the number of lines displayed and the color for each function.

      Preview

      alt text

      Installation

      Installation is very simple, just clone the git into your modules directory then add the module to your config.

      cd ~/MagicMirror/modules
      git clone https://github.com/aSeann/MMM-Console
      

      Using the module

      To use this module, add the following configuration block to the modules array in the config/config.js file:

      var config = {
          modules: [
              {
              	module: "MMM-Console",
              	header: "Console Output",
              	position: "bottom_left",
              	config: {
              		lines: 15,
              	}
              
              },
      
      posted in System
      S
      Seann
    • RE: Prioritize loading specific module

      @sdetweil I like the sound of that! But yeah the crash part may be an issue. But in some cases the module’s just stop updating and your mirror holds the same web content?

      posted in Development
      S
      Seann
    • RE: Prioritize loading specific module

      In case anyone is interested, I have managed to get the console output from anytime after the console module is loaded. alt text

      posted in Development
      S
      Seann
    • Prioritize loading specific module

      I had an idea of outputting the developer console to the mirror window to give it more of a nerdy feel.
      I have managed to get it to output to the html but I would like it to log all console output even those which say loading modules ect, does anyone have any idea how I could go about achieving this as a module?
      Edit:
      I should have been a little more specific, I have made an override for the Log.info function currently. It display’s to html any output after all the modules are loaded and the updatenotification is suspended.

      posted in Development
      S
      Seann
    • RE: Conditional formatting of config (e.g., MMM-Unsplash)

      @kazanjig If you edit the module “MMM-Unsplash” then yes. It’s a lot easier than it sounds honestly.

      posted in Development
      S
      Seann
    • RE: Uncaught TypeError: this.sendNotification is not a function at HTMLParagraphElement.

      @emrhssla This is a common issue for most modules, most people solve the issue by adding “self = this;” as the first line of the function they require the send notification in. Personally I declare a global variable outside of the module; e.g.:

      var Test;
      Module.register("MMM-Test", {
      

      then inside the start function assign it’s value to be the module.

      start: function(){
      Test = this;
      }
      

      then to send the notification you would just use:

      Test.sendNotification(blah blah );
      
      posted in Troubleshooting
      S
      Seann
    • RE: MMM-Coinbase

      @xc2dn Nice work, might be good to add live currency conversion on there too ;)

      posted in Utilities
      S
      Seann
    • 1 / 1