MagicMirror Forum
    • Recent
    • Tags
    • Unsolved
    • Solved
    • MagicMirror² Repository
    • Documentation
    • 3rd-Party-Modules
    • Donate
    • Discord
    • Register
    • Login
    A New Chapter for MagicMirror: The Community Takes the Lead
    Read the statement by Michael Teeuw here.

    MMM-DWD-WarnWeather - Wetterwarnungen

    Scheduled Pinned Locked Moved Utilities
    62 Posts 27 Posters 70.6k Views 28 Watching
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • LukeCodewalkerL Offline
      LukeCodewalker Module Developer @Matthes0815
      last edited by

      @Matthes0815 Thank you.
      I will have a look over that, when I got some time.

      1 Reply Last reply Reply Quote 0
      • M Offline
        Matthes0815
        last edited by

        You’re welcome… take your time, it’s not really a problem.

        Here now a photo of the indented warnings:

        0_1479588125181_dwd2.jpg

        LukeCodewalkerL 1 Reply Last reply Reply Quote 0
        • T Offline
          thk
          last edited by

          @LukeCodewalker
          Great module, thanks a lot!

          Having the same issue on Firefox with the icon size as Matthes0815.
          Also the warnings are shown twice.
          I´ve setup the config to poll DWD warnings for my region (Landkreis), any idea why this happens?

          0_1479651787580_DWD.png

          1 Reply Last reply Reply Quote 0
          • LukeCodewalkerL Offline
            LukeCodewalker Module Developer
            last edited by

            Ok. Firefox bug should be fixed now.
            Maybe you see the warning twice because DWD is having it twice on their website?
            For further issues please use the new Trubleshooting thread. Thank you.

            T 1 Reply Last reply Reply Quote 0
            • LukeCodewalkerL Offline
              LukeCodewalker Module Developer @Matthes0815
              last edited by

              @Matthes0815 said in MMM-DWD-WarnWeather - Wetterwarnungen:

              You’re welcome… take your time, it’s not really a problem.

              Here now a photo of the indented warnings:

              0_1479588125181_dwd2.jpg

              Are you using the latest version of this module? I could not reproduce this bug.

              Are you

              1 Reply Last reply Reply Quote 0
              • M Offline
                Matthes0815
                last edited by

                It was the latest version when I took the photo. Sadly the weather here is nice and friendly, no warnings at the moment…
                Where are the autumn storms when you need them?

                1 Reply Last reply Reply Quote 0
                • T Offline
                  thk @LukeCodewalker
                  last edited by

                  @LukeCodewalker Many thanks for the Firefox fix, awesome.
                  Now everything is displayed correctly.

                  Regarding the duplicate warnings, you were right, they were displayed twice on the DWD website.
                  One for the whole region and another one for altitudes above 600m.

                  Great work :-)

                  1 Reply Last reply Reply Quote 1
                  • M Offline
                    MarkAlisch
                    last edited by

                    Hi,

                    no data is displayed with me. It remains in the state “Warnungen werden geladen…” Region was “Kreis Lippe”

                    Any ideas or suggestions?

                    Mark

                    M 1 Reply Last reply Reply Quote 0
                    • M Offline
                      MarkAlisch @MarkAlisch
                      last edited by

                      config:

                      {
                      module: ‘MMM-DWD-WarnWeather’,
                      position: ‘top_right’,
                      header: ‘Wetterwarnungen’,
                      config: {
                      region: ‘Kreis Lippe’,
                      changeColor: true,
                      interval: 10601000
                      }
                      },

                      M 1 Reply Last reply Reply Quote 0
                      • M Offline
                        MarkAlisch @MarkAlisch
                        last edited by

                        @MarkAlisch After a restart of the raspi it worked.

                        yawnsY 1 Reply Last reply Reply Quote 0
                        • yawnsY Offline
                          yawns Moderator @MarkAlisch
                          last edited by

                          @MarkAlisch said in MMM-DWD-WarnWeather - Wetterwarnungen:

                          @MarkAlisch After a restart of the raspi it worked.

                          This module - like other modules too - uses a node_helper and this requires a reboot of the magicmirror process (or the whole raspberry).

                          1 Reply Last reply Reply Quote 0
                          • lolobyteL Offline
                            lolobyte @ostfilinchen
                            last edited by

                            @ostfilinchen said in MMM-DWD-WarnWeather - Wetterwarnungen:

                            I have commented out line 56-60 in MMM-DWD-WarnWeather.js.

                            Hello,

                            witch code have you commented out?

                            please add the sample code.

                            Thanks

                            O 1 Reply Last reply Reply Quote 0
                            • O Offline
                              ostfilinchen @lolobyte
                              last edited by

                              @lolobyte in the actual Version of the Module u didn’t need to coment out the lines

                              lolobyteL 1 Reply Last reply Reply Quote 0
                              • lolobyteL Offline
                                lolobyte @ostfilinchen
                                last edited by

                                @ostfilinchen

                                oh, then tell me please how is it actually possible to increase the text and format the date.

                                LukeCodewalkerL 1 Reply Last reply Reply Quote 0
                                • LukeCodewalkerL Offline
                                  LukeCodewalker Module Developer @lolobyte
                                  last edited by

                                  @lolobyte
                                  for increasing the text size you have to edit MMM-DWD-Warnweather.css (description class).
                                  to format the date you have to edit lines 84 and 85:

                                  var start = moment(this.warnings[i]['start']).format("dd. HH") + ' Uhr';
                                  var end = moment(this.warnings[i]['end']).format("dd. HH") + ' Uhr';
                                  
                                  lolobyteL 1 Reply Last reply Reply Quote 0
                                  • lolobyteL Offline
                                    lolobyte @LukeCodewalker
                                    last edited by

                                    @LukeCodewalker

                                    Hi, thank you for your answer.

                                    this is a part of my custom.css

                                    .MMM-DWD-WarnWeather .description {
                                    font-family: Roboto;
                                    margin-left: 10px;
                                    color: white; //white
                                    padding-left: 50px;
                                    padding-top: 3px;
                                    color: #fff; //fff
                                    width: auto;
                                    font-size: 25px;
                                    line-height: 30px;
                                    text-align: left;
                                    }

                                    i can make some changes, but not wit all commands.

                                    for example.

                                    if i use

                                    color: red;

                                    nothing changes

                                    when i use

                                    color: #f00; //fff

                                    the color change.

                                    if is try to use

                                        font-size: 10px;
                                        line-height: 10px;
                                    

                                    nothing happens.

                                    What’s wrong?

                                    1 Reply Last reply Reply Quote 0
                                    • pugslyP Offline
                                      pugsly
                                      last edited by

                                      Can this be modified to work in the US?

                                      LukeCodewalkerL 1 Reply Last reply Reply Quote 0
                                      • LukeCodewalkerL Offline
                                        LukeCodewalker Module Developer @pugsly
                                        last edited by

                                        @pugsly
                                        Sure. You have to find an API that gives you the data and you have to modify the module that it works with this data.

                                        1 Reply Last reply Reply Quote 0
                                        • S Offline
                                          schmo90
                                          last edited by

                                          Hy
                                          is there a way to show the warnings for regions in austria?

                                          lolobyteL 1 Reply Last reply Reply Quote 0
                                          • lolobyteL Offline
                                            lolobyte @schmo90
                                            last edited by

                                            @schmo90

                                            the answer is above your message…

                                            ;-)

                                            1 Reply Last reply Reply Quote 0

                                            Hello! It looks like you're interested in this conversation, but you don't have an account yet.

                                            Getting fed up of having to scroll through the same posts each visit? When you register for an account, you'll always come back to exactly where you were before, and choose to be notified of new replies (either via email, or push notification). You'll also be able to save bookmarks and upvote posts to show your appreciation to other community members.

                                            With your input, this post could be even better 💗

                                            Register Login
                                            • 1
                                            • 2
                                            • 3
                                            • 4
                                            • 4 / 4
                                            • First post
                                              Last post
                                            Enjoying MagicMirror? Please consider a donation!
                                            MagicMirror created by Michael Teeuw.
                                            Forum managed by Sam, technical setup by Karsten.
                                            This forum is using NodeBB as its core | Contributors
                                            Contact | Privacy Policy