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

    Posts

    Recent Best Controversial
    • RE: Temperature info from 1 Pi to another Pi with Magic Mirror?

      @nickb23 https://github.com/Thlb/MMM-temp-ds18b20

      posted in General Discussion
      O
      onetwankyfive
    • RE: Module to show local traffic information - UK

      @nickb23 I was able to achieve this with MMM-iFrameReload and an html file in that folder… It looks something like this.

      {
      module: ‘MMM-iFrameReload’,
      header:‘Traffic Map’,
      position: ‘top_right’, // This can be any of the regions.
      config: {
      // See ‘Configuration options’ for more information.
      url: “http://localhost:8080/modules/MMM-iFrameReload/nameofhtmlfile.html”,
      width: “580px”, // Optional. Default: 400px
      height: “1100px”, // Optional. Default: 800px
      refreshInterval: 600 //Optional. Default: 3600 = 1 hour
      }
      },

      with this code below to make the map and save the html in the iframe folder

      https://developers.google.com/maps/documentation/javascript/examples/layer-traffic

      posted in Requests
      O
      onetwankyfive
    • RE: Display lastest pics from insta hashtag

      +1 this would allow me / my friends to add pics to my mirror without a seperate instagram account and posting twice

      posted in Requests
      O
      onetwankyfive
    • RE: Calendar Heading Changes

      couldn’t you use different font awesome symbols when you put the calendar in the config

      posted in Troubleshooting
      O
      onetwankyfive
    • RE: How do you develop locally and push to the Pi?

      @MattG use VNC

      https://github.com/MichMich/MagicMirror/wiki/Configuring-the-Raspberry-Pi#enable-vnc

      then download vnc viewer for the mac

      posted in Troubleshooting
      O
      onetwankyfive
    • RE: How do you develop locally and push to the Pi?

      I use textwrangler and Netatalk:

      sudo apt-get install netatalk

      as far as I know u need to restart your mm pm2 everytime

      I also setup VNC to see it remotely but you can use the ipofthemm:8080 in your web browser as long as u setup whitelisting propperly

      posted in Troubleshooting
      O
      onetwankyfive
    • Error Running Magic Mirror on Google Compute

      I want to run MM2 on google compute engine jessie so multiple clients can access it as a website… I seem to have it running minus the ip whitelist isn’t working…

      i pasted
      ipWhitelist: ["::fff:0.0.0.0/1", "::fff:128.0.0.0/2", "::fff:192.0.0.0/3", "::fff:224.0.0.0/4", "127.0.0.1", "::ffff:127.0.0.1", "::1"],

      into the config… It runs the node serveronly fine , but displays
      This device is not allowed to access your mirror.
      Please check your config.js or config.js.sample to change this.

      admin@magicmirror:~/MagicMirror$ node serveronly/
      Starting MagicMirror: v2.1.0
      Loading config ...
      WARNING! Could not load config file. Starting with default configuration. Error found: TypeError: Object # 
      has no method 'accessSync'
      Loading module helpers ...
      No helper found for module: updatenotification.
      No helper found for module: helloworld.
      All module helpers loaded.
      Starting server op port 8080 ... 
      Server started ...
      Sockets connected & modules started ...
      Ready to go! Please point your browser to: http://localhost:8080
      Access denied to IP address: my.home.ip.here
      

      any ideas or is there any way to disable whitelisting completely?

      posted in Troubleshooting
      O
      onetwankyfive
    • RE: digital photo frame

      I use https://github.com/kapsolas/MMM-Instagram

      with swapping the line

      var media = items[i].images.low_resolution.url;

      in node_helper.js with

      var media = items[i].images.standard_resolution.url;

      as well as the following in my custom css

      img {
      filter: grayscale(100%);
      max-width:500px;
      }

      setup a seperate private instagram and give the login details to everyone in the house…

      posted in Requests
      O
      onetwankyfive
    • RE: Alexa to-do list module

      if you “switch” to wunderlist, it still keeps all of your data the same with the alexa app so you aren’t necessarily switching, just using it as a means of calling the data.

      posted in Requests
      O
      onetwankyfive
    • RE: Wunderlist - your todos on the mirror

      @Mar mine worked fine

       {
              module: 'MMM-Todoist',
              position: 'top_left',  // This can be any of the regions. Best results in left or right regions.
              header: 'Alexa TO-DO List', // This is optional
              config: { // See 'Configuration options' for more information.
                  accessToken: 'accesstokenaXXXXCXCC687',
                  maximumEntries: 60,
                  interval: 60,
                  lists: [ 12345 ],
                  fade: false
            }
          },
      
      
       {
              module: 'MMM-Todoist',
              position: 'top_left',  // This can be any of the regions. Best results in left or right regions.
              header: 'Alexa Shopping List', // This is optional
              config: { // See 'Configuration options' for more information.
                  accessToken: 'XXXX',
                  maximumEntries: 60,
                  interval: 60,
                  lists: [ 1234 ],
                  fade: false
            }
          },
      
      posted in Troubleshooting
      O
      onetwankyfive
    • RE: Toothbrush integration

      @SvenSommer I have a brush that is compatible and can help… are the instructions posted 5 days ago the correct ones? I can give it a whirl tonight / tomorrow morning if they are.

      posted in Requests
      O
      onetwankyfive
    • RE: Thinking of using MagicMirror, not for a mirror, but for an office tv display. Would this work?

      the mmm-todoist should do the trick
      https://github.com/cbrooker/MMM-Todoist

      they can edit the content via webpage or app

      also you can have alexa built in / external to edit the doc.
      https://blog.todoist.com/2016/10/13/todoist-alexa-integration/

      posted in General Discussion
      O
      onetwankyfive
    • RE: TV Show Time

      @vicdilou I have no idea… it just worked out of the box for me.

      posted in Requests
      O
      onetwankyfive
    • RE: TV Show Time

      @vicdilou it comes off my nas and uses my external ip…

      posted in Requests
      O
      onetwankyfive
    • RE: MMM-Todoist - Your todoist tasks on your mirror

      @shashank click inbox instead of today

      posted in Productivity
      O
      onetwankyfive
    • RE: Fitbit

      @tismepaulo same issue for me as well

      posted in Troubleshooting
      O
      onetwankyfive
    • 1 / 1