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

    Topics

    • justjim1220J

      MM using Arduino...

      Watching Ignoring Scheduled Pinned Locked Moved Tutorials
      3
      0 Votes
      3 Posts
      1k Views
      S
      Arduino is for automatism not for informatic i dont think it is possible or it is not as simple as for the raspberry
    • justjim1220J

      Help with Pages...

      Watching Ignoring Scheduled Pinned Locked Moved Unsolved Troubleshooting
      7
      0 Votes
      7 Posts
      2k Views
      S
      @justjim1220 no… each module has to add code to deal with it… like your video player… add a suspend() routine to be called when hidden and a config option for backgroundPlay true/false and if playing on suspend, and you’re supposed to stop, then stop playing… and if resumed and were playing then resume playing, (if u can)… but other modules will have to add code like that too… you cannot MAKE them behave
    • justjim1220J

      installing MM2 dependency issues...

      Watching Ignoring Scheduled Pinned Locked Moved Unsolved Troubleshooting
      1
      0 Votes
      1 Posts
      485 Views
      justjim1220J
      is there anyway these can be added to the installation to install the latest versions? npm WARN grunt-stylelint@0.10.1 requires a peer of stylelint@^9.0.0 but none is installed. You must install peer dependencies yourself. npm WARN acorn-jsx@5.0.1 requires a peer of acorn@^6.0.0 but none is installed. You must install peer dependencies yourself. lodash@4.17.5 is also shown as a vulnerability with every install and update. Just curious as having the current versions of all the dependencies upon install may alleviate some of the issues some users have with updates and initial installs.
    • justjim1220J

      Module Request for the Weather Experts! 😉

      Watching Ignoring Scheduled Pinned Locked Moved Solved Requests
      4
      2
      0 Votes
      4 Posts
      1k Views
      ?
      { module: "MMM-Widget", config: { widgets: [ { html:` < div class="test" > < iframe src="https://maps.darksky.net/@temperature,40.262,-94.035,9900000?3d" frameborder="0" style="overflow:hidden;overflow-x:hidden;overflow-y:hidden;height:100%;width:100%;position:absolute;top:0px;left:0px;right:0px;bottom:0px" height="100%" width="100%" >< /iframe > < /div > `, position: "fullscreen_below", width: "100vw", height: "100vh", }, ] } } remove empty space after and before of > and <
    • justjim1220J

      HERE’S THE FIRST PERSON TO PUT A PI IN THE RASPBERRY PI KEYBOARD

      Watching Ignoring Scheduled Pinned Locked Moved Tutorials
      1
      0 Votes
      1 Posts
      2k Views
      justjim1220J
      https://howchoo.com/g/zgmzytq1mmy/raspberry-pi-in-official-pi-keyboard
    • justjim1220J

      another question... regarding TV's as MM monitors.

      Watching Ignoring Scheduled Pinned Locked Moved Troubleshooting
      24
      0 Votes
      24 Posts
      8k Views
      justjim1220J
      @mykle1 :rolling_on_the_floor_laughing: :rolling_on_the_floor_laughing: :rolling_on_the_floor_laughing: yeah, realized the main issue was trying to get it to have a border and it just wouldn’t work with the wide screen monitor of the TV.
    • justjim1220J

      any ideas what causes this... ?

      Watching Ignoring Scheduled Pinned Locked Moved Unsolved Troubleshooting
      4
      1
      0 Votes
      4 Posts
      1k Views
      justjim1220J
      this issue has started back up again for reasons unknown Any Ideas?
    • justjim1220J

      jquery module not working --- need help!

      Watching Ignoring Scheduled Pinned Locked Moved Troubleshooting
      10
      0 Votes
      10 Posts
      2k Views
      S
      @justjim1220 yeh, his use of jQuery is not against the HTML as u were doing, but against data items returned from other sources.
    • justjim1220J

      just a bit of experimenting...

      Watching Ignoring Scheduled Pinned Locked Moved General Discussion
      1
      6
      0 Votes
      1 Posts
      379 Views
      justjim1220J
      [card:justjim1220/MMM-NFL-marquee] [image: 1549127488064-screenshot-20.png] [image: 1549127499826-screenshot-21.png] [image: 1549127509919-screenshot-22.png] [image: 1549127519749-screenshot-23.png] [image: 1549127527043-screenshot-24.png] [image: 1549127534780-screenshot-25.png]
    • justjim1220J

      MMM-DigitalAlarmClock

      Watching Ignoring Scheduled Pinned Locked Moved Utilities
      1
      2
      2 Votes
      1 Posts
      976 Views
      justjim1220J
      Description: An integration of MMM-DigClock and MMM-AlarmClock modified to have the look of a vintage-style digital alarm clock. Screenshots: [image: 1547877358574-screenshot-1.png] [image: 1547877398819-screenshot-2.png] Variations: The first fully working version after about 5 tries. [card:justjim1220/MMM-DigitalAlarmClock]
    • justjim1220J

      regions...

      Watching Ignoring Scheduled Pinned Locked Moved Development
      31
      0 Votes
      31 Posts
      13k Views
      I
      @retroflex Also some modules don’t listen to fullscreen, if the DOM gets updated, it paints over any fullscreen region
    • justjim1220J

      MMM-MyVideoPlayer

      Watching Ignoring Scheduled Pinned Locked Moved Entertainment
      10
      6
      1 Votes
      10 Posts
      4k Views
      justjim1220J
      @mykle1 :rolling_on_the_floor_laughing: :rolling_on_the_floor_laughing: :rolling_on_the_floor_laughing:
    • justjim1220J

      help converting code for module...

      Watching Ignoring Scheduled Pinned Locked Moved Development
      21
      0 Votes
      21 Posts
      8k Views
      ?
      @justjim1220 const exec = require('child_process').exec var NodeHelper = require("node_helper") module.exports = NodeHelper.create({ socketNotificationReceived: function(noti, payload) { if (noti == "GIVE_ME_RESULT") { setTimeout(()=>{ exec("C:\WINDOWS\system32\get-temperature", //I don't know WINDOWS system at all. Is it right? (err, sto, ste) => { if (!err) { this.sendSocketNotification("HERE_IS_RESULT", sto) } else { console.log("Error", err) } } ) }, 1000) } } }) It isn’t tested. But you can catch the idea.
    • justjim1220J

      MMM-PC-Stats issue...

      Watching Ignoring Scheduled Pinned Locked Moved Unsolved Troubleshooting
      3
      2
      0 Votes
      3 Posts
      1k Views
      Mykle1M
      And now the same screenshots from my dev machine [image: 1540426824298-screenshot-from-2018-10-24-19-54-44.png] [image: 1540426831410-screenshot-from-2018-10-24-19-56-10.png]
    • justjim1220J

      MMM-PC-Stats

      Watching Ignoring Scheduled Pinned Locked Moved Unsolved Troubleshooting
      41
      3
      0 Votes
      41 Posts
      18k Views
      yawnsY
      @justjim1220 said in MMM-PC-Stats: @mykle1 Another question… How can be changed to show F°? Not really a big deal, mostly just curious… :upside-down_face: Just run sensors -f, at least this is working in debian, so I guess it should work in raspbian too Or, if you just want to convert Celcius to Fahrenheit, add some code to Mykles module like this temp = ((temp/5)*9)+32 ;) But then again, you could add a config option to toggle between Fahrenheit and Celsius and submit a pull request
    • justjim1220J

      MMM-NewsFeedTicker

      Watching Ignoring Scheduled Pinned Locked Moved Utilities
      94
      3
      0 Votes
      94 Posts
      69k Views
      Cr4z33C
      @cowboysdude sorry for being late, but thanks for willing to help. :D @sdetweil going to check right now thanks.
    • justjim1220J

      how to pull new element added to an array?

      Watching Ignoring Scheduled Pinned Locked Moved Solved Troubleshooting
      57
      0 Votes
      57 Posts
      21k Views
      justjim1220J
      I think I have it done! Repository updated. Put on list in 3rd Party Modules page MMM-NewsFeedTicker Now, If only I can remember how to make those gh-cards!!! LMAO!!! Thanks Everyone who helped me with this!!!
    • justjim1220J

      MMM-CalendarEXT ... Need a custom layout...

      Watching Ignoring Scheduled Pinned Locked Moved Unsolved Requests
      7
      1
      0 Votes
      7 Posts
      3k Views
      C
      Love what you have done. When finished can you post the modified css please. Thanks
    • justjim1220J

      NFL Standings chart module

      Watching Ignoring Scheduled Pinned Locked Moved Unsolved Requests
      2
      1 Votes
      2 Posts
      2k Views
      el97E
      Could this be something? https://github.com/fewieden/MMM-NFL/tree/master/translations
    • 1 / 1