Magic Mirror

Hi,
yeah 1 container for each tablet

You can make your own: https://www.youtube.com/watch?v=J2S75AhPqnM

Basic woodworking skills (and I do mean basic) required.

Semi-mirrored perspex can be got from Amazon, and then you just need an old monitor that you can probably get from your local charity shop, or eBay.

Oh, and you don’t need to go as crazy as the guy in the video did… :slight_smile:

1 Like

heya, can you share the set up on your magicmirror and also homeassistant?

Thanks

I also got magic mirror running.now I wanna use voice commands but struggle with the approach…has anyone magicmirror with voice commands for has l running?

For those how are interested:

I modified the module to show a list of sensors on the MagicMirror together with mdi icons.

1 Like

My MagicMirror just got damaged recently :frowning:
the monitor died after a year of being a “mirror”

Maybe it’s a dumb question but how can I run magic mirror on Hassio?

哈哈!大佬!求分享!

You can’t.

Ok. Is there another way to run magicmirror and HA on the same rpi3?

Install MM first then homeassistant in virtualenv

Hope it is not too late to ask. How can I change the icon, name, value color?

You can specify the icon under within each sensor.
The name is taken from the friendly name as specified in Home-Assistant.
Color is not yet implemented. Feel free to submit an PR :wink:

icons: [{
	"default": "account",
	"state_off": "run",
	"state_on": "run-fast"
	}
]

I got all working. What I would like to change is color of the text(name of the sensor) and value (on, off)

Got it done.

Could you share how

the formatting show up ok for you guys? my sensors arnt lined up at all.

post your config of mmm-homeassistant-sensors, also the frontend of the mirror thus we can help.

Awesome, thanks for the quick assist!

 {
                        module: 'MMM-homeassistant-sensors',
					    position: 'bottom_right',
                        config: {
                                url: 'http://xx.x.x.xx:xxx/api/states?api_password=xxx',
                                prettyName: false,
                                title: "Plex",
                                stripName: false,
                                values: [{
                                        sensor: "sensor.watching_plex",
                                        icons: [{
                                                        "default": "plex"
                                                }
                                        ]
                                },
                                {
                                        sensor: "sensor.tautulli_total",
                                        icons: [{
                                                        "default": "plex",
                                                }
                                        ]
                                },
                                {
                                        sensor: "sensor.tautulli_total_bandwidth",
                                        icons: [{
                                                        "default": "plex",
                                                }
                                        ]
                                }
                        ]
                    }
                },

by the way, i have an automation so when the number of users change this pops up for 10 seconds. pretty cool

1 Like