Navigation

    MagicMirror Forum

    • Register
    • Login
    • Search
    • Recent
    • Tags
    • Unsolved
    • Solved
    • MagicMirror² Repository
    • Documentation
    • Donate
    • Discord
    1. Home
    2. daveyg_71
    D
    • Profile
    • Following
    • Followers
    • Topics
    • Posts
    • Best
    • Groups

    daveyg_71

    @daveyg_71

    2
    Reputation
    15
    Posts
    949
    Profile views
    0
    Followers
    0
    Following
    Joined Last Online

    daveyg_71 Follow

    Best posts made by daveyg_71

    • RE: Twitter Feed

      @Blastitt

      Just curious you wrote, “Displays your tweets and @mentions since last MM reboot”

      Does this module only get new tweets on a reboot, not on a continual basis?

      posted in Utilities
      D
      daveyg_71
    • RE: MMM-voice

      @strawberry-3.141 Thanks for the advice. I plugged the mic into my Mac and I couldn’t get it to see it. Must be the mic. I ordered a new one so I will find out in a few days.

      posted in Utilities
      D
      daveyg_71

    Latest posts made by daveyg_71

    • RE: MLB Standings...

      @Mykle1

      That fixed it.

      Thanks

      posted in Sport
      D
      daveyg_71
    • RE: MLB Standings...

      I can’t seem to get this module to work. I get a black screen. I was able to use the MLB scores module with no problem.

      posted in Sport
      D
      daveyg_71
    • RE: MMM-voice

      @strawberry-3.141 I opened up the error log and this is all I see:

      1271271271271111111111111111

      The mirror starts up with no problems. It just says error next to the microphone symbol.

      posted in Utilities
      D
      daveyg_71
    • RE: MMM-voice

      @cowboysdude I got the new mic, and the pi can see it now, but the mirror is showing error next to the microphone.

      Is there anything wrong with my config file?

                  {
                                  module: 'MMM-voice',
                                  position: 'bottom_bar',
                                  config: {
                                          microphone: 1,
                                          keyword: 'MAGIC MIRROR',
                                          timeout: 15,
                          }
                  },
      posted in Utilities
      D
      daveyg_71
    • RE: Change Currentweather colors

      @smithdsl How did you find which modules are loaded in which order?

      posted in Development
      D
      daveyg_71
    • RE: Resize custom or main modules

      @strawberry-3.141 I was able to view the inspect the html with crtl+shift+I.

      my problem is it doesn’t look like the example above.

      posted in Development
      D
      daveyg_71
    • RE: Resize custom or main modules

      @cowboysdude I wasn’t planning on changing the any core css files. Wanted to look at it so I could find the module information like the earlier post then change the custom.css

      posted in Development
      D
      daveyg_71
    • RE: MMM-voice

      @strawberry-3.141 Thanks for the advice. I plugged the mic into my Mac and I couldn’t get it to see it. Must be the mic. I ordered a new one so I will find out in a few days.

      posted in Utilities
      D
      daveyg_71
    • RE: iCal calendar problem. Is it just me?

      I had the same problem. I removed the calendar url, rebooted, then added the calendar url back in and rebooted again.

      It seems to be working now.

      posted in Troubleshooting
      D
      daveyg_71
    • RE: Resize custom or main modules

      @KirAsh4 said in Resize custom or main modules:

      Those CSS rules will affect all the modules, as all modules use them. If you only want to affect one single module, then you need to change the rules to point to the specific module. Let’s say you want the text smaller on the newsfeed, then you need to look at the actual HTML being created to get the class named being used:

      <div>
        <div>
          <div>
            <div>ESPN - Top News, 4 minutes ago:</div>
            <div>Georgia RBs Chubb, Michel still iffy for opener</div>
          </div>
        </div>
      </div>
      

      Now you can see that the rules that affect the text, 'light small dimmed' and ’bright medium light' are all contained within the main class 'module newsfeed newsfeed' (on the very first line.)

      Using a bit of CSS juju, doing this:

      .newsfeed .medium {
        font-size: 18px;
      }
      

      … will make the text of the article headline smaller than the default '30px'. And this will only affect the newsfeed module. All the others also using the 'medium' rule will be unaffected.

      Where can I find the HTML file that is being created?

      The only HTML file I see is at ~/MagicMirror/index.html

      This file looks nothing like the example shown here.

      posted in Development
      D
      daveyg_71