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

    Posts

    Recent Best Controversial
    • RE: MMM-GrafanaCharts and MMM-GrafanaGauges: Display you data with Charts and Gauges. Beautifully.

      @planet4 good news!
      Can you please share which CSS file, and what you edited?

      posted in Utilities
      SvenSommerS
      SvenSommer
    • RE: Calendar times in 24 hour format?

      Then I have no idea. Sorry…

      posted in Feature Requests
      SvenSommerS
      SvenSommer
    • RE: Calendar times in 24 hour format?

      Is your google calendar in the correct time zone?

      posted in Feature Requests
      SvenSommerS
      SvenSommer
    • RE: MMM-Globe

      I just found this source here and thought about this module.
      http://earth.nullschool.net/

      posted in Utilities
      SvenSommerS
      SvenSommer
    • RE: Calendar times in 24 hour format?

      I think there is simply an understanding problem. You wrote:
      “When i change timeFormat to 12 calendar add PM to 03:00 so it’s correctly, but when i change to 24, PM disappear.”

      So, if I’m interpreting this right, you are looking for something that isn’t the usual case. You want to display something like: “20:59 PM”
      Is this correct?

      posted in Feature Requests
      SvenSommerS
      SvenSommer
    • RE: Calendar times in 24 hour format?

      @MrEdOne
      timeFormat uses the formatting of your operating system.
      When “24” is configured the format “hh:mm” is returned. Which is exactly, what you are looking for.
      Here is the code snippet from calender.js:

      		switch (config.timeFormat) {
      		case 12: {
      			moment.updateLocale(config.language, {
      				longDateFormat: {
      					LT: "h:mm A"
      				}
      			});
      			break;
      		}
      		case 24: {
      			moment.updateLocale(config.language, {
      				longDateFormat: {
      					LT: "hh:mm"
      				}
      			});
      			break;
      		}
      

      What do you get, when typing date in your console?

      0_1501007853673_492bdac5-1124-4fcf-b5bf-c69605f21853-image.png
      If it’s not in displayed in a format of 24h, change the setting of your OS.

      Maybe this helps?

      posted in Feature Requests
      SvenSommerS
      SvenSommer
    • RE: Graph module

      @planet4 I’m glad to hear, everything worked out as expected.

      • If you want to do me a favor. Please let others know in the module teaser thread, you were able to use the module. So maybe other lose their fear. ;)

      • I had a look at changing the background color by inverting the colors of the “white” theme. Didn’t worked out, cause it’s no real white neither.

      posted in Requests
      SvenSommerS
      SvenSommer
    • RE: Graph module

      @feedparakeet
      I think there is even a better way. You can share each panel individually.
      http://docs.grafana.org/reference/sharing/

      posted in Requests
      SvenSommerS
      SvenSommer
    • RE: stronger Raspberry Pi 3 Alternatives

      @Snille Yes, very interesting. I liked the idea of comparing the boards with Geekbench. Maybe this is a measurable unit to compare.
      @cowboysdude Are you willing to run such a Geekbench on your system?

      Somebody backed this and is going to get a one?

      posted in Hardware
      SvenSommerS
      SvenSommer
    • RE: Graph module

      @planet4 The tutorial explaines how to enable authentication via http to access influxdb without login.
      […]
      You’re changing parts of the configuration file /etc/influxdb/influxdb.conf

      [http]
      enabled = true bind-address = ":8086" # change to a specific interface if needed 
      auth-enabled = true # will enforce authentication
      ...
      

      To access your Grafana graphs remotely, you can use the share option to get a public accessible link. The same url uses MMM-GrafanaChart to show the graph on the mirror.

      Let me know if you ran in any problems…

      posted in Requests
      SvenSommerS
      SvenSommer
    • 1 / 1