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

    ernenr1

    @ernenr1

    0
    Reputation
    272
    Profile views
    4
    Posts
    0
    Followers
    0
    Following
    Joined
    Last Online

    ernenr1 Unfollow Follow

    Latest posts made by ernenr1

    • MMM-AVStock not displaying NASDAQ information

      Hi there! I use MMM-AVStock, to display stock prices/market information on my Magic Mirror. I’m currently having trouble with the NASDAQ composite as it is not displaying any information at all. I believe I have the right symbol for the API as “^IXIC”. Anyone else using this module having trouble with the NASDAQ composite? I’m using the default config file from the github page, and I haven’t edited the .js file. Thanks!

                  { 
                      module: "MMM-AVStock",
                      position: "bottom_right",
                      config: {
                          apiKey : "XXXXXXXXXXXXXXXXXXXXX", 
                          symbols : ["^NYA","^IXIC", "^GSPC"],
                          alias: ["NYSE", "NASDAQ", "S&P 500"],
                          tickerDuration: 60, 
                          chartDays: 90, 
                          poolInterval : 1000*15,
                          mode : "table", 
                          decimals: 4, 
                          candleSticks : false, 
                          coloredCandles : false, 
                          premiumAccount: false, 
                      }
                 },
      
      posted in Troubleshooting mmm-avstock stock market stock modules not loading
      E
      ernenr1
    • Setting up sleep schedule on laptop question

      Hi! I currently have Raspbian Desktop installed on an old Thinkpad x41 tablet in which it runs MagicMirror. Everything is mostly set and ready to go before I mount the laptop on to my wall. The only thing left is to somehow set a sleep schedule. I was wondering what would be the best way to accomplish this?

      I read that people use cron jobs to accomplish this task, but I have a feeling it only works on RasPi’s attached to an external display. Is there any way I can create a cron job to put my laptop in a sleep or suspend state? If that isn’t possible is there any way turn off the LCD display? The laptop will always will be plugged into an outlet. The specs are as listed:

      Architecture:          i686
      CPU op-mode(s):        32-bit
      Byte Order:            Little Endian
      CPU(s):                1
      On-line CPU(s) list:   0
      Thread(s) per core:    1
      Core(s) per socket:    1
      Socket(s):             1
      Vendor ID:             GenuineIntel
      CPU family:            6
      Model:                 13
      Model name:            Intel(R) Pentium(R) M processor 1.50GHz
      Stepping:              8
      CPU MHz:               600.000
      CPU max MHz:           1500.0000
      CPU min MHz:           600.0000
      BogoMIPS:              1197.04
      Flags:                 fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov clflush dts acpi mmx fxsr sse sse2 ss tm pbe nx bts est tm2
      
      posted in General Discussion
      E
      ernenr1
    • RE: Unable to update to latest version of Node.js and npm

      @sdetweil Thank you very much! This actually worked!

      posted in Troubleshooting
      E
      ernenr1
    • Unable to update to latest version of Node.js and npm

      Hi! This is my first time installing Magic Mirror and I have been attempting to install it through a manual install. I currently have Raspbian Desktop installed on an old Thinkpad x41. The specs are as listed:

      Architecture:          i686
      CPU op-mode(s):        32-bit
      Byte Order:            Little Endian
      CPU(s):                1
      On-line CPU(s) list:   0
      Thread(s) per core:    1
      Core(s) per socket:    1
      Socket(s):             1
      Vendor ID:             GenuineIntel
      CPU family:            6
      Model:                 13
      Model name:            Intel(R) Pentium(R) M processor 1.50GHz
      Stepping:              8
      CPU MHz:               600.000
      CPU max MHz:           1500.0000
      CPU min MHz:           600.0000
      BogoMIPS:              1197.04
      Flags:                 fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov clflush dts acpi mmx fxsr sse sse2 ss tm pbe nx bts est tm2
      

      Now the issue is that when I reach to the npm install step of the installation, I am returned with this error.

      pi@raspberry:~/MagicMirror $ npm install && npm start
      -bash: npm: command not found
      

      I have a feeling the issue is due to the version of Node.js. and the inability to install npm. The latest version I have installed 8.11.1. and then when I check the version of npm installed its missing.

      pi@raspberry:~/MagicMirror $ sudo apt-get install -y nodejs
      Reading package lists... Done
      Building dependency tree
      Reading state information... Done
      nodejs is already the newest version (8.11.1~dfsg-2~bpo9+1).
      0 upgraded, 0 newly installed, 0 to remove and 1 not upgraded.
      
      pi@raspberry:~ $ npm -v
      -bash: npm: command not found
      

      If I try to install npm, I get this error.

      pi@raspberry:~ $ sudo apt-get install npm
      Reading package lists... Done
      Building dependency tree
      Reading state information... Done
      Note, selecting 'nodejs:amd64' instead of 'npm:amd64'
      Some packages could not be installed. This may mean that you have
      requested an impossible situation or if you are using the unstable
      distribution that some required packages have not yet been created
      or been moved out of Incoming.
      The following information may help to resolve the situation:
      
      The following packages have unmet dependencies:
       nodejs:amd64 : Depends: python-minimal:amd64 but it is not going to be installed
      E: Unable to correct problems, you have held broken packages.
      

      Is the reason as to why I am running into both of these issues due to the hardware limitation of my Thinkpad being a 32-bit machine? If so, is there any way to update to the 10.x version of Node.js with a 32-bit machine?

      posted in Troubleshooting
      E
      ernenr1