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

    Posts

    Recent Best Controversial
    • RE: What have I been working on......

      @cowboysdude awesome!!

      posted in Show your Mirror
      S
      sdetweil
    • RE: [MMM-Helium-Wallet] Display your helium wallet balance and value on your Magic Mirror.

      @hayseed

      wrong image upload link… 3rd icon from the right in editor

      posted in Showcase
      S
      sdetweil
    • RE: MMM-solar showing "Loading" and is doing nothing .... did someone get it running?

      @mwel1977 thats just bad logging

      edit the node_helper.js file in the MMM-Solar folder, at the end

      after this

      if (!error && response.statusCode == 200) {
      					var jsonData = JSON.parse(body);
      				        self.sendSocketNotification("SOLAR_DATA", jsonData);
      				}
      

      add this

      				else{
      				   if(error!=null){
      					console.log("api request error ="+ JSON.stringify(error));
      				   }
      				   else{
      					console.log("api response code error ="+ response.statusCode);
      				   }
      				}
      

      i get this

      Notification: GET_SOLAR Payload: [object Object]
      api response code error =401
      

      401 is authentication failed

      posted in Troubleshooting
      S
      sdetweil
    • RE: MMM-NewsAPI after MM2.25.0 update

      @kicifans awesome… thanks for the feedback…

      posted in System
      S
      sdetweil
    • RE: Magic Mirror will not start

      @elporcho ‘permission denied’ sounds like you used sudo npm install, which leaves files owned by root, not the normal pi user.

      Best to erase and start again

      posted in Troubleshooting
      S
      sdetweil
    • RE: What have I been working on......

      @cowboysdude no ‘mistakes’ just challenges. Always glad to look at new code

      posted in Show your Mirror
      S
      sdetweil
    • RE: [MMM-Helium-Wallet] Display your helium wallet balance and value on your Magic Mirror.

      @hayseed i agree, don’t know what it is supposed to do…

      posted in Showcase
      S
      sdetweil
    • RE: MMM-solar showing "Loading" and is doing nothing .... did someone get it running?

      I submitted that code to the MMM-Solar author for the future

      posted in Troubleshooting
      S
      sdetweil
    • RE: MMM-NewsAPI after MM2.25.0 update

      @kicifans said in MMM-NewsAPI after MM2.25.0 update:

      Cannot find module ‘node-fetch’

      yes, we removed node-fetch in this release, and here is another module that didn’t document using it…

      see general purpose recovery steps here
      https://forum.magicmirror.builders/topic/15778/fix-for-black-screen-in-2-16-and-later

      posted in System
      S
      sdetweil
    • RE: MagicMirror does not start anymore

      Try npm install valid-url from the Magic mirror folder

      posted in Troubleshooting
      S
      sdetweil
    • RE: Finally I finished my mirror

      @Hadr1en if u search for “Velcro tape” u might find sources near you.

      they make all widths and strength of the hooks. mounting pi directly with the sticky side… hm, might want to use a cheap case to hold the pi, and velcro that

      posted in Show your Mirror
      S
      sdetweil
    • RE: MMM-PenPlotter -Render mesmerizing line animations on your mirror!

      @BerkSmash1984 the module delay time is 65 seconds and u have 30 seconds for pages.

      so the module is waiting, and then gets hidden, restarting on show. then hidden…

      posted in Showcase
      S
      sdetweil
    • RE: start motion with pm2

      @costascontis motion is trying to write it’s log to /var/log, which requires root authority. I think u can change this in motion.conf

      posted in Troubleshooting
      S
      sdetweil
    • RE: MMM-Scenes2

      @mumblebaj said in MMM-Scenes2:

      So it depends on the module design and data provider etc

      correct… other users might not know or understand the data provider issues, so in my opinion, if you are posting for other users consumption, you should consider this as a design requirement… (to be debugged later if you don’t do it from the beginning)

      posted in System
      S
      sdetweil
    • RE: trouble Accessing JSON structure using variables, help

      @sdetweil well, its a side effect of the way the code works…

      if (object[key][key] !==‘undefined’)

      will throw an access error if either of the two keys are not in the object… BEFORE you can check the results with the if…

      SO, wrap with try/catch and all is well…

      posted in Troubleshooting
      S
      sdetweil
    • RE: 1 old noob + 1 rPi = I can't believe I did it! (revisited)

      @Mykle1 come on man! you rock. lots of beautiful things I wouldn’t even THINK to try…

      posted in Show your Mirror
      S
      sdetweil
    • RE: MMM-PenPlotter -Render mesmerizing line animations on your mirror!

      @BerkSmash1984 welcome to the fun of backgrounds!

      somehow you would need to make the image background not transparent, but you will get a big black box instead

      posted in Showcase
      S
      sdetweil
    • RE: Need help understanding "sendNotification"

      @sdetweil so.
      MMM-Swipe says

       'Swipe_left'
      

      but MMM-Pages is listening for

      'PAGE_CHANGED' - Set the page to the specified payload page.
      'PAGE_INCREMENT' - Move to the next page.
      'PAGE_DECREMENT' - Move to the previous page.
      

      so, some other module needs to translate. I don’t know of a module that would do this…
      receiveNotiication Swipe_Left, and then sendNotification PAGE_DECREMENT (after checking to see if above page 0 I would assume).

      posted in Troubleshooting
      S
      sdetweil
    • RE: MMM-Bash

      @draxiom very cool…

      similar to my PythonPrint
      https://github.com/sdetweil/MMM-PythonPrint

      posted in System
      S
      sdetweil
    • RE: trouble Accessing JSON structure using variables, help

      @mykle1 there is no better thought motivator than posting on a live forum…!!

      posted in Troubleshooting
      S
      sdetweil
    • 1
    • 2
    • 10
    • 11
    • 12
    • 13
    • 14
    • 86
    • 87
    • 12 / 87