Possible workaround: add time to the recurring event.
Read the statement by Michael Teeuw here.
Posts
-
RE: Calendar displaying tomorrow all day events, for today, following time change from DST to ST.
-
RE: List of upcoming eclipses
Also took a quick look and found this:
https://aa.usno.navy.mil/data/docs/api.php#soleclipse -
RE: CPU load per module
List your modules here and someone might have a qualified guess.
Then you can start removing modules one by one until the problem stops.
-
RE: Cheapest reflective film?
I would consider skipping the mirror part altogether and only use a screen. Otherwise you will just get a mirror that doesn’t look like a mirror.
-
RE: MMM-HASS & css nightmare (slight exaggeration)
Use the developer toos in Chrome to see the whole html & css. You can also edit that to try out things quickly.
-
RE: Log.log message not being displayed
@Adman https://github.com/shbatm/MMM-Logging might be worth looking in to. I don’t remember exactly how you can set it up, but I think you can get both module and node messages together somehow.
-
RE: Majority of my emoji not showing on RPB3+
I’ve seen some colored symbols, but don’t know if you can get an overview of those that are working on MM.
-
RE: Majority of my emoji not showing on RPB3+
If they are unicode I have seen that different browsers have very different support for symbols and smileys. I think the Electron version that MM is using lacks a lot of code points (symbols).
-
RE: Text per week
@Sean Thanks a lot! My thought was to make a module, but wanted to check first if one existed. And now you did the work for me :) I will try it out tonight. Maybe even upload it so others can download it.
-
Text per week
Does anyone know if there is a module that let’s you show a different text each week? My son is learning letters in school and each week they have a certain letter, like this:
week 38: R
week 39: E
week 40: P
…My though was to show this week’s letter on my mirror.
-
RE: New User Photo Question?
Is the URL for the image possible to generate based on year and month?
-
RE: Hmm, a lot of modules are putting up a fight for me :-(
You say yr forecast… perhaps you should look at the module MMM-YrThen.
-
RE: Weekly changing modules
https://github.com/ianperrin/MMM-ModuleScheduler seems to do exactly this. Haven’t tested it myself though.
-
RE: Won't restart/stuck at prompt
In addition to having a img backup, it’s always a good idea to backup the config file and custom css file.
To avoid card corruptions, always SSH into the RPi and perform a sudo shutdown instead of just pulling the plug.
-
RE: Questions for Smart Mirror builders
@Snow_white Yes, I use it more than my phone because it’s always on and is in the hallway. Mine is always on, I just turn off the screen during night-time. The real benifit is when you are more than one person in the household… you don’t have to look at like five different apps for each person’s phone, the mirror just shows an overview of it all.
For the other modules I did not mention…
- The default clock
- calendar_monthly
- Weather forecast
- Next bus departure
- MMM-MyCommute
- National soccer league standings
-
RE: Questions for Smart Mirror builders
Welcome to the magic mirror world!
-
I built one mostly because it was a fun project that is both useful and makes you learn new things at the same time.
-
Much more than I though it would do! My whole family uses it, especially to check the family calendar. I don’t know how we could keep track of all dates before. The second most used thing are the soccer training calenders for my kids. The team provides ical links, so those are updated automatically. Third most used module is the lunch menu for my kid’s shool. Then I have a bunch of other modules that I don’t look at that much. But for example it’s nice to be able to quickly get an overview of the days of the month and see the week number.
-
Maybe not norm, but very common. The release of google hub and similar hints that a home display might be the future.
-
If I would build one again, I might opt for just a screen without the mirror glass. I never use it as a mirror as I prefer the full body mirror that we already had from before. A regular mirror will always have a bit better reflection (unless you buy a crazy expesive OLED screen). This is because the back-light of the screen lights up the entire mirror from behind, even if the screen is black. You notice this the most when it’s dark where the mirror is. Also I want to fill up the entire screen with useful info, so there’s no space left for the actual mirror. :) Altough it has a certain wow factor. So my tips would be…
- First think about if you want a mirror or just a display.
- If you go the mirror route, go with real mirror glass like Pilkington or similar. Investigate carefully on what to buy, there are several different models which lets through different amounts of light.
- Don’t make the mirror larger than the screen. I regret building the frame bigger, as you can see where the screen is due to the back-light.
- Also investigate which screen to buy… I just bought the cheapest one, but I think screen with more contrast will be better behind a mirror (?). Other people can probably contribute more on how much this affects your result. If you use an old screen, it might also be thicker.
- Plan where you want to put the mirror in your home. I think a well-lit area is better. Also close to your socket. And where there’s good wi-fi.
Where are you located? Depending on where, there might be open API’s that gives you access to local services like which day the trash is emptied etc.
-
-
RE: [MMM-Remote-Control](v2-dev) Extensible REST API, Dynamic Menus, and Socket Communications, plus other updates
@swvalenti Yeah, same here. Would really like to find an answer for this…
-
RE: show info from a webpage
If the returned result is in JSON format, I found two modules for this:
https://github.com/timdows/MMM-JsonTable
https://github.com/amcolash/MMM-json-feedAlso found a module for XML result:
https://github.com/Eunanibus/MMM-HTTPRequestDisplay -
RE: Whole font should be displayed brightly
Untested, but I guess this would work…
Look in main.css:
https://github.com/MichMich/MagicMirror/blob/master/css/main.css.dimmed and .normal are the darker texts. Add these to you custom.css with a brighter color, e.g.:
.dimmed {
color: #aaa;
}.normal {
color: #fff;
}Maybe you also need to override body / color and header / color. Also some modules use their own css names, then you need to override their colors in custom.css as well.
-
RE: regions...
@isaac2004 IIRC there is a region for fullscreen above that allows you to put modules on top of everything else. Maybe it won’t solve all your wishes, but worth looking in to.