MagicMirror Forum

    • Register
    • Login
    • Search
    • Recent
    • Tags
    • Unsolved
    • Solved
    • MagicMirror² Repository
    • Documentation
    • Donate
    • Discord
    1. Home
    2. BerkSmash1984
    B
    • Profile
    • Following 0
    • Followers 0
    • Topics 2
    • Posts 27
    • Best 5
    • Controversial 0
    • Groups 0

    BerkSmash1984

    @BerkSmash1984

    5
    Reputation
    1
    Profile views
    27
    Posts
    0
    Followers
    0
    Following
    Joined Last Online

    BerkSmash1984 Unfollow Follow

    Best posts made by BerkSmash1984

    • RE: Clothing Conditions Accurately Working?

      @sdetweil
      Well, I figured out my issue. I accidently had an underscore in my temp_max entry, which was basically removing the condition altogether. Not sure how I missed that, ugh
      2ac41ccd-cb1a-42f6-9d73-9927ea999e9e-image.png

      I removed it and all conditions are working as they should. Canceling my issue submission on the module’s Github

      posted in Utilities
      B
      BerkSmash1984
    • RE: MMM-eswordoftheday prevents MM from launching

      @nipper2000h
      I just got this working by referencing https://github.com/daniel-windsor/MMM-eswordoftheday/issues/6

      Here is what I did
      cd into the MMM-eswordoftheday folder in /MagicMirror/modules
      run the following commands:

      git checkout 7db81145a2e238f2400fa2e82407a9078790048c
      
      npm install
      

      Then stop and restart your magic mirror.

      It is working for me now:
      d446211a-e14b-4c87-b6c3-b8d13a1d4ac5-image.png

      posted in Troubleshooting
      B
      BerkSmash1984
    • RE: MMM-Strava ID Unauthorized

      @sdetweil my bad, thanks! I corrected my post

      posted in Health
      B
      BerkSmash1984
    • RE: MMM-PenPlotter -Render mesmerizing line animations on your mirror!

      @sdetweil Thanks! Yup I just realized that too and changed the value for MMM-Pages to 6500 and it works. Only thing now is, if you have a background (I am using MMM-Wallpaper to display random in images from Bing and Chromecast) you will see an outline of the whole image instead of what is being drawn.

      953bea59-8cf8-427a-8bc3-9a0d201bc7fb-image.png

      Wonder if there is a way to address that, besides disabling the background wallpaper…

      posted in Showcase
      B
      BerkSmash1984
    • RE: MMM-PenPlotter -Render mesmerizing line animations on your mirror!

      @sdetweil Thanks for the response

      Yes, all other modules appear fine on page 2. Here is my pages config:

        {
                          module: 'MMM-pages',
                           disabled: false,
                          config: {
                                  modules:
                                          [[ "page_1",], ["page_2"]],
                                  // fixed: [ "clock", "MMM-Wallpaper", "MMM-page-indicator" ],
                                  rotationTime: 30000,
                          }
      },
      

      I did confirm that after disabling MMM-Pages, it does work

      posted in Showcase
      B
      BerkSmash1984

    Latest posts made by BerkSmash1984

    • RE: MMM-PenPlotter -Render mesmerizing line animations on your mirror!

      @bballboy21
      Disregard, I figured it out. I did not realize that the path is effectively a value of 1 if not otherwise specified, thus following the guide on https://jbamford.github.io/Animate-SVG-Files-Breakdown/ and specifying

      pathLength="1"
      

      and

      stroke-dasharray: 1;
      stroke-dashoffset: 1;
      

      in there respective places in the svg files allows the animation to work.

      2b726e69-a24f-4d12-98b1-4dbff7b41a52-image.png

      I can now create as many animated svg files for this module as I like, using https://sandify.org. Awesome!

      posted in Showcase
      B
      BerkSmash1984
    • RE: MMM-eswordoftheday prevents MM from launching

      @nipper2000h
      I just got this working by referencing https://github.com/daniel-windsor/MMM-eswordoftheday/issues/6

      Here is what I did
      cd into the MMM-eswordoftheday folder in /MagicMirror/modules
      run the following commands:

      git checkout 7db81145a2e238f2400fa2e82407a9078790048c
      
      npm install
      

      Then stop and restart your magic mirror.

      It is working for me now:
      d446211a-e14b-4c87-b6c3-b8d13a1d4ac5-image.png

      posted in Troubleshooting
      B
      BerkSmash1984
    • RE: MMM-eswordoftheday prevents MM from launching

      @sdetweil @nipper2000h

      I too just installed this module following the directions on the dev’s Github and am also seeing the below:

      0e853376-e089-41a3-9990-972103c3648d-image.png

      It appears this module does not work ‘out of the box.’

      posted in Troubleshooting
      B
      BerkSmash1984
    • RE: MMM-PenPlotter -Render mesmerizing line animations on your mirror!

      @bballboy21
      Also, if you use https://sandify.org/ to generate a svg file, how do you figure out the number of paths to update the stroke-dasharray and stroke-dashoffset values in the style section, as the svg file will not have individual paths specified?

      Example:
      d1e609c3-424b-4175-a449-46a268f5cdec-image.png

      If I move the svg file to the example_svg folder on my MM, it just shows to completed picture, and does not actually draw it. I am guessing this is bc the value for both are currently set to 1 (but again not sure how to determine what those values would actually be)

      66621e7c-6836-42db-adf2-575646dceebe-image.png

      posted in Showcase
      B
      BerkSmash1984
    • RE: MMM-PenPlotter -Render mesmerizing line animations on your mirror!

      @bballboy21
      I am interested in attempting to create one, but how do you handle the code when path is formatted as shown below, with spaces and new lines and not having separate paths individually spelled out like what is discsussed in: https://youtu.be/Nz0SzKKdd-A

      a2d4923b-0f68-4737-83cf-cbb21dbd66c0-image.png

      The code from this screenshot is the bunny, found at: https://drawingbots.net/knowledge/tools/svg-generator
      86be0fd6-c2fb-41ee-860b-4d3252263567-image.png

      posted in Showcase
      B
      BerkSmash1984
    • RE: Clothing Conditions Accurately Working?

      @sdetweil
      Well, I figured out my issue. I accidently had an underscore in my temp_max entry, which was basically removing the condition altogether. Not sure how I missed that, ugh
      2ac41ccd-cb1a-42f6-9d73-9927ea999e9e-image.png

      I removed it and all conditions are working as they should. Canceling my issue submission on the module’s Github

      posted in Utilities
      B
      BerkSmash1984
    • RE: MMM-OpenWeatherForecast - Replacement for MMM-DarkSkyForecast

      @BKeyport
      Thanks for the responses! The filter for MMM-Wallpaper worked perfectly (I actually had values specified already but must have forget when I first setup the module). I dropped the grayscale and brightness down to 0.2 and that seems to be the sweet spot for ensure the default text color is legible, regardless of the background.

      Thanks again for your help, I really appreciate it!

      posted in Utilities
      B
      BerkSmash1984
    • RE: MMM-OpenWeatherForecast - Replacement for MMM-DarkSkyForecast

      @sdetweil
      Thank you! I will dig into it via the dev console

      posted in Utilities
      B
      BerkSmash1984
    • RE: MMM-OpenWeatherForecast - Replacement for MMM-DarkSkyForecast

      Awesome module! Question for you: I am using MMM-Wallpaper and some of the text can be hard to read during certain wallpapers. I looked in the MMM-OpenWeatherForecast.css file but did not see an obvious place to change the color for the text highlighted in the red boxes below. I would like to set them to white (#FFFFFF). Can you tell me where in that css to set that? Thanks for your help!

      9b26e7ea-ca02-4335-909f-bbf64836c8ee-image.png

      posted in Utilities
      B
      BerkSmash1984
    • RE: Clothing Conditions Accurately Working?

      @sdetweil
      Just reported the issue.

      posted in Utilities
      B
      BerkSmash1984