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

    Posts

    Recent Best Controversial
    • RE: MMM-MPlayer

      @myfingersarecold

      Hi there !

      This is most probably the module I was most anticipating for and that will enable me to finally go from ‘buster’ to ‘bookworm’.
      Finally a worthy and easy follow-up for OMXPlayer.

      I am still testing, but it looks very promising.

      Thanks a lot !

      E.J.

      PS I will have a few question later on.

      posted in Utilities
      evroomE
      evroom
    • MMM-PublicTransportHafas - Loading - undefined

      Hi,

      Besides the calendar module, this module is the most used module in our household. Especially my wife has become quite dependent on it.
      Thank you to the developer and the maintainer.

      But, since a couple weeks I get this “Loading - undefined” message, which is quite annoying.
      It ‘restores’ itself automatically, so that is a good thing.

      I opened an issue for it:
      https://github.com/KristjanESPERANTO/MMM-PublicTransportHafas/issues/185

      My used end-point is db (Deutsche Bahn).

      What I would like to know is, if there are more users of this module and if they experience the same ??

      Thanks in advance,

      E.J.

      posted in Troubleshooting
      evroomE
      evroom
    • RE: MMM-Hoymiles-Wifi

      @schris88

      Just FYI, I declare(d) more parameters than really necessary and actually used, in order to allow for more counters to display.
      For example a gauge for each panel; more details on the energy production of each panel; etc.
      I will make a remark about this in the code.

      posted in Development
      evroomE
      evroom
    • RE: MMM-Hoymiles-Wifi

      @schris88

      First of all, those are details I need to have a look at now that the basis is there.
      Perhaps there are other values and queries that make sense and that I can use. Like dtu_power and dtu_daily_energy.
      Also saving some data to not have counters showing 0 when the invertor is inactive needs to be implemented.
      During testing I found out that the pv_data for port 1 and 2 were different sometimes and that is why I needed to add those checks.
      And they can never hurt. Better to be safe than sorry.
      Furthermore, when you have only 1 panel connected, it is needed anyway.

      posted in Development
      evroomE
      evroom
    • RE: MMM-Hoymiles-Wifi

      @schris88

      Christian,

      This is on the TODO list:
      change pv_data to dtu date for combined output of inverter

      But I do not really understand what you mean by it.
      Do you mean combined output of 2 panels iso just 1 ?

      Please elaborate.

      E.J.

      posted in Development
      evroomE
      evroom
    • RE: MMM-Hoymiles-Wifi

      Hi there,

      I made some major changes to the code and hopefully did all the GitHub stuff correct in order to allow persons interested to give it a (new) try.

      https://github.com/schris88/MMM-Hoymiles-Wifi

      There is still a lot to do (see ‘TODO’ in the README file), but I think the basis provided by Christian (@schris88) has been strengthened.

      Best regards,

      E.J.

      posted in Development
      evroomE
      evroom
    • RE: Changing table cell in calendar module using custom.css

      @sdetweil

      That did the trick !

      I must say that the Elements tab is confusing, as it looks like the value did not change.
      Probably this is the state before custom.css is applied.
      Screenshot 2024-11-13 at 22.27.58.png

      The padding has gone (this was my goal):
      Screenshot 2024-11-13 at 22.34.19.png

      An additional question.
      How to change the class, as in this example ?

      $('.calendar table')
      <table class="xsmall"><tr class="dateheader normal dayAfterTomorrow"><td colspan="3" style="padding-top: 10px;">Nov 15th 00:00 </td></tr><tr class="event-wrapper normal event dayAfterTomorrow"><td>&nbsp;&nbsp;&nbsp;</td><td class="title bright align-left" colspan="2">TestCal: All day event</td></tr></table>
      
      .calendar .table {
        class: "small" !important;
      }
      

      It says Unkown property name, which makes sense.
      Screenshot 2024-11-13 at 22.50.12.png

      E.J.

      posted in Custom CSS
      evroomE
      evroom
    • RE: Changing table cell in calendar module using custom.css

      @sdetweil

      Yes, I can:

      Screenshot 2024-11-13 at 22.09.32.png

      But is stricken through.
      So somebody high-jacked it probably.

      Look like I am going somewhere, but now the finishing touch.

      posted in Custom CSS
      evroomE
      evroom
    • RE: Changing table cell in calendar module using custom.css

      @sdetweil

      parens, not braces

      Yes, those who can read have a clear advantage. :-)

      $('.calendar tr .dateheader.normal.dayAfterTomorrow td')
      null
      
      $('.calendar tr.dateheader.normal.dayAfterTomorrow td')
      <td colspan="3" style="padding-top: 10px;">Nov 15th 00:00 </td>
      
      $('.calendar .dateheader.normal.dayAfterTomorrow td')
      <td colspan="3" style="padding-top: 10px;">Nov 15th 00:00 </td>
      

      custom.css:

      .calendar .dateheader.normal.dayAfterTomorrow td {
          padding-top: 0px;
        }
      
      .calendar tr.dateheader.normal.dayAfterTomorrow td {
        padding-top: 0px;
      }
      

      Both do no work.

      Either the selection is wrong, or perhaps it has to do with style="padding-top: 10px;".
      Or both.

      Will continue tomorrow.

      E.J.

      posted in Custom CSS
      evroomE
      evroom
    • RE: Changing table cell in calendar module using custom.css

      @sdetweil said in Changing table cell in calendar module using custom.css:

      @evroom did you get this resolved?

      No, I did not and even with your additional tutorial I am hitting a black spot.

      I see this at the bottom:
      Screenshot 2024-11-13 at 18.00.27.png

      This corresponds with:

      <div class="module-content"
      ><table class="xsmall">
          <tr class="dateheader normal dayAfterTomorrow">
              <td colspan="3" style="padding-top: 10px;">Nov 15th 00:00 </td>
          </tr>
          <tr class="event-wrapper normal event dayAfterTomorrow">
              <td>&nbsp;&nbsp;&nbsp;</td>
              <td class="title bright align-left" colspan="2">TestCal: All day event</td>
          </tr>
      </table>
      </div>
      

      So I should have all info available to build the CSS entry, you would think.
      Right ?

      And the console does not like my input:

      ${'calendar .event'}
      VM2076:1 Uncaught SyntaxError: Unexpected token '{'
      ${'.calendar .event'}
      VM2080:1 Uncaught SyntaxError: Unexpected token '{'
      ${'.calendar .event .time'}
      VM2146:1 Uncaught SyntaxError: Unexpected token '{'
      

      I cannot even make a CSS entry to change this:
      <table class="xsmall">, that is how lost I am :-)

      Need to study the existing tutorials some more.

      E.J.

      posted in Custom CSS
      evroomE
      evroom
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 47
    • 48
    • 5 / 48