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

    causerino

    @causerino

    3
    Reputation
    1
    Profile views
    6
    Posts
    0
    Followers
    0
    Following
    Joined
    Last Online

    causerino Unfollow Follow

    Best posts made by causerino

    • RE: MMM-RAIN-MAP (new: version 2.x)

      Hi,

      I don’t know what I am doing wrong, but I can’t get the map to centre on my location.

      //New Module                    Rain Map
                      {
                              module: "MMM-RAIN-MAP",
                              position: "top_right",
                                      config: {
                                      animationSpeedMs: 400,
                                      colorizeTime: true,
                                      defaultZoomLevel: 8,
                                      displayTime: true,
                                      displayTimeline: true,
                                      displayClockSymbol: true,
                                      displayOnlyOnRain: false,
                                      extraDelayLastFrameMs: 1000,
                                      extraDelayCurrentFrameMs: 3000,
                                      markers: [
      //                                      { lat: 49.41, lng: 8.717, color: "red" },
                                              { lat: 50.212, lng: 5.29, color: "green" },
                                      ],
                                      mapPositions: [
                                              { lat: 50.212, lng: 5.29, zoom: 9, loops: 1 },
                                      ],
                                      mapUrl: "https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png",
                                      mapHeight: "420px",
                                      mapWidth: "420px",
                                      substitudeModules: [],
                                      updateIntervalInSeconds: 300,
                              }
                      },
      

      Am I doing something completely wrong? It just centres around Rochefort, and not Cornwall.

      EDIT: I’m an idiot… it should be -5 not 5 for lng. Fixed. Thank you for this!

      posted in Utilities
      C
      causerino

    Latest posts made by causerino

    • RE: A working weather module?

      @bclinton1962 MMM-OpenWeatherForecast works great

      posted in Troubleshooting
      C
      causerino
    • RE: Internet Monitor

      @bhepler said in Internet Monitor:

      @causerino said in Internet Monitor:

      Has this died recently for anyone else? I have made no config changes and it’s stopped working. I’ve tried with a new server ID in case they have changed, but still no luck.

      I can confirm. It appears that the speedtest service is down. I’m troubleshooting now.

      Update: Problem is with the speedtest-net package. Not sure what the problem is, but it has been down for the past week. They’ve opened an issue with the developers, so hopefully they’ll get around to it. The SpeedTest website and their paid services appear to be working, so something is up with the API.

      I’m looking at my fork of the original repository and the latest changes to speedtest-net and I’m going to prep an update. Once it comes back, I’ll publish.

      Thanks very much for doing this :)

      posted in Utilities
      C
      causerino
    • RE: Internet Monitor

      Has this died recently for anyone else? I have made no config changes and it’s stopped working. I’ve tried with a new server ID in case they have changed, but still no luck.

      //New Module Internet Monitor

                      {
                              module: 'internet-monitor',
                              position: 'top_left',
                              header: 'SpeedTest',
                              config:{
                                      type: '',
                                      maxTime: 20000,
                                      updateInterval: 0,
                                      verbose: false,
                                      serverId: "40788",
      //                              displayStrength: true,
                                      displaySpeed: true,
                                      strengthIconSize: 50,
                                      maxGaugeScale: 1000,
                              },
                      },
      
      posted in Utilities
      C
      causerino
    • RE: MMM-RAIN-MAP (new: version 2.x)

      Hi,

      I don’t know what I am doing wrong, but I can’t get the map to centre on my location.

      //New Module                    Rain Map
                      {
                              module: "MMM-RAIN-MAP",
                              position: "top_right",
                                      config: {
                                      animationSpeedMs: 400,
                                      colorizeTime: true,
                                      defaultZoomLevel: 8,
                                      displayTime: true,
                                      displayTimeline: true,
                                      displayClockSymbol: true,
                                      displayOnlyOnRain: false,
                                      extraDelayLastFrameMs: 1000,
                                      extraDelayCurrentFrameMs: 3000,
                                      markers: [
      //                                      { lat: 49.41, lng: 8.717, color: "red" },
                                              { lat: 50.212, lng: 5.29, color: "green" },
                                      ],
                                      mapPositions: [
                                              { lat: 50.212, lng: 5.29, zoom: 9, loops: 1 },
                                      ],
                                      mapUrl: "https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png",
                                      mapHeight: "420px",
                                      mapWidth: "420px",
                                      substitudeModules: [],
                                      updateIntervalInSeconds: 300,
                              }
                      },
      

      Am I doing something completely wrong? It just centres around Rochefort, and not Cornwall.

      EDIT: I’m an idiot… it should be -5 not 5 for lng. Fixed. Thank you for this!

      posted in Utilities
      C
      causerino
    • RE: MMM-cryptocurrency - v1.4

      Hi, I am trying to add a newish token to this, but can’t seem to get it to work. I have added the token name and ID to MMM-cryptocurrency.js in the sparklineIDs section, and then added it to my config.js using the name, but it still doesn’t show up.

      Am I missing something out?

      MMM-cryptocurrency.js - I added ‘summit-koda-token’: 9966,
      config.js - I added ‘summit-koda-token’ to the currency section.

      My eth, bitcoin still show fine.

      posted in Utilities
      C
      causerino
    • Is there a way to show different CSS to different devices, or should I run multiple mirrors?

      Hi,

      I was wondering if there is a way to show different layouts of the same MM to different users?

      My example is that I will have a permanent MM set up, but will also view the content on a phone, TV, and laptop, and I would like it to have formatting correct for each one. I am using MM as a dashboard, kind of like the old iGoogle homepage.

      Is there a way to do this via CSS by differentiating user-agents/browsers, or could I run multiple different MMs and then bookmark them individually on each device.

      posted in Development
      C
      causerino