This is the 4th of 5 videos where I create a digital photo frame using the Magic Mirror open source software as a base with a Raspberry Pi 3B+ and a 10" HDMI monitor.
Materials:
Raspberry Pi 3B+ Kit - https://amzn.to/2Gwyclw
10" HDMI Monitor - https://amzn.to/2UYXcoo
Mouse/Keyboard Combo - https://amzn.to/2UYd9eA
HDMI Cable - https://amzn.to/2rKRUzy
Software:
MagicMirror - https://magicmirror.builders/
Manually start MagicMirror command - cd ~/MagicMirror && DISPLAY=:0 npm start
Raspbian Download - https://www.raspberrypi.org/downloads...
Etcher - https://www.balena.io/etcher/
Google Photos Module - https://github.com/eouia/MMM-GooglePh...
Remote Control Module - https://github.com/Jopyth/MMM-Remote-...
AutoStart & Turn off screen saver - https://howchoo.com/g/ntcymzbimjv/how...
Code my custom.css file found from https://forum.magicmirror.builders/to...
body {
color: #000;
}
.module.calendar {
background-color:rgba(255,255,255,0.3);
color: #000;
border-radius:8px;
padding:8px;
}
.module.clock {
background-color:rgba(255,255,255,0.4);
border-radius:8px;
padding:8px;
}
.module.currentweather {
background-color:rgba(255,255,255,0.4);
border-radius:8px;
padding:8px;
}
.module.weatherforecast {
background-color:rgba(255,255,255,0.4);
border-radius:8px;
padding:8px;
color: #000;
}
.dimmed {
/* color: #666; */
color: #000;
}
.normal {
/* color: #999;*/
color: #000;
}
.bright {
color: #000;
}
.header {
color: #000;
}