MagicMirror Forum
    • Recent
    • Tags
    • Unsolved
    • Solved
    • MagicMirror² Repository
    • Documentation
    • 3rd-Party-Modules
    • Donate
    • Discord
    • Register
    • Login
    1. Home
    2. esim
    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 2
    • Posts 4
    • Groups 0

    esim

    @esim

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

    esim Unfollow Follow

    Latest posts made by esim

    • MagicMirror on Windows 10

      I followed the tutorial here on the forum to install MM on windows 10
      everything went fine all the way to the start of MM ( npm start) a black screen witha lot of
      lines saying UNDEFINED, this was ofcourse because I was lacking the config.js file. After rename the sample config file, the npm start again, but with a black screen. The config is correct.
      What could cause this?

      posted in Troubleshooting
      E
      esim
    • RE: Need help with a module

      @sdetweil thanks, a very nice tip that one.

      posted in Troubleshooting
      E
      esim
    • RE: Need help with a module

      I solved it my self :-) using some very old programming knowledge.

      {
      module: ‘MMM-NesteBussAtB’,
      position: ‘upper_third’,
      config: {
      showIcon: true, // Bus icon in front of row
      showNumber: true, // Bus number
      showFrom: true, // Bus stop name
      showTo: true, // Bus destination
      showMin: true, // “min” text after minutes
      size: “medium”, // Text size, for example small, medium or large
      stopIds: [16011496, 16010496], // See https://www.atb.no/holdeplassoversikt/
      maxCount: 2, // Max number of next buses per route
      maxMinutes: 45, // Do not show buses more then this minutes into the future
      stacked: true // Show multiple buses on same row, if same route and destination
      }
      },
      
      posted in Troubleshooting
      E
      esim
    • Need help with a module

      could someone please tell me what is wrong here:

      {
              module: 'MMM-NesteBussAtB',
              position: 'upper_third',
              config: {
                  showIcon: true, // Bus icon in front of row
                  showNumber: true, // Bus number
                  showFrom: true, // Bus stop name
                  showTo: true, // Bus destination
                  showMin: true, // "min" text after minutes
                  size: "medium", // Text size, for example small, medium or large
                  stopIds: [16011496, 16010496], // See https://www.atb.no/holdeplassoversikt/
                  maxCount: 2, // Max number of next buses per route
                  maxMinutes: 45, // Do not show buses more then this minutes into the future
                  stacked: true // Show multiple buses on same row, if same route and destination       
              }
          }
      

      because i can’t get it to work.

      posted in Troubleshooting
      E
      esim