How can I get a specific picture to show based on a calendar day? Like if it’s July 4th show a flag…
Read the statement by Michael Teeuw here.
Posts
-
Picture based on calendar
-
RE: MMM-GoogleCast
@broberg Is it possible to lay out all the speakers side by side?
great module btw -
RE: MMM-GoogleCast
@veego you just repeat the code in config file twice with different ideas. no need to reinstall anything.
-
RE: [MMM-NowPlayingOnSpotify] – Display the currently on Spotify playing song
@Module-Developers is there an module that can show me whats playing on all my google home mini devices from all music carriers not just spotify.
-
Is there a module that will show whats playing on all my google home minis?
I know there is a module that show what playing from spotify but I would like to see whats playing on all my devices from all music carriers.
-
Where did I park my car
I already have tasket set up to send an mgtt with my location when I park. I use it with my HA setup. How can I get this info onto my magic mirror. I just want a picture of a map with my location showing.
-
RE: Lovelace
@cyberphox well what I really want is to just add some of my components (cards) to the mirror. my mirror has some great stuff as it is and i just want to bring in a few more from home assistant.
-
RE: Lovelace
You can use MMM-SmartWebDisplay and it will work but lovelace always has the full site and I really just want like one card to show on Magic Mirror, so I havent figured it out yet.
-
RE: MMM-Remote-Control
/* Magic Mirror Config Sample * * By Michael Teeuw http://michaelteeuw.nl * MIT Licensed. * * For more information how you can configurate this file * See https://github.com/MichMich/MagicMirror#configuration * */ var config = { address: "0.0.0.0", // Address to listen on, can be: // - "localhost", "127.0.0.1", "::1" to listen on loopback interface // - another specific IPv4/6 to listen on a specific interface // - "", "0.0.0.0", "::" to listen on any interface // Default, when address config is left out, is "localhost" port: 8080, ipWhitelist: ["127.0.0.1", "192.168.1.1/24"], language: "en", timeFormat: 12, units: "imperial", modules: [ { module: "alert", disabled: true, }, { module: 'MMM-Remote-Control', disabled: false, // uncomment the following line to show the URL of the remote control on the mirror position: 'bottom_left', // you can hide this module afterwards from the remote control itself config: { customCommand: {}, // Optional, See "Using Custom Commands" below customMenu: "custom_menu.json", // Optional, See "Custom Menu Items" below showModuleApiMenu: true, // Optional, Enable the Module Controls menu apiKey: "", // Optional, See API/README.md for details } }, module.exports = config;}