Read the statement by Michael Teeuw here.
Posts
-
RE: Music with smartphone to Pi
@vicdilou http://raspberrypi.stackexchange.com/questions/47708/setup-raspberry-pi-3-as-bluetooth-speaker
or better
http://blog.scphillips.com/posts/2014/05/playing-music-on-a-raspberry-pi-using-upnp-and-dlna-v3/i´ll give it a try in some days (currently waiting for components) :D
-
RE: Memory effect with MM2
@strawberry-3.141 yeah but i´m a css noob. maybe you can explain that a little? many thanks!
-
RE: How do you switch on / off, wake up yours?
@lolobyte a question :) is the cam on all the time? i´m interested to use the pi cam as a surveillance cam (something like an ip cam) und using a mm module for motion detection (wake up the screen etc.)
-
RE: Memory effect with MM2
It depends on the displaytechnology you are using. Generally you are right about that. But it is not that bad. https://en.wikipedia.org/wiki/Screen_burn-in
Anyway my idea (the basic idea is very old, currently google is using something in android wear) is a module, with a Screen-burn-in protection that periodically shift the contents of the screen by a few pixels :)
MMM-Anti-screen-burn-in ? :P
-
Amazon cloud drive photo album
An idea: A full-screen or tiny frame with your photos from Amazon drive, like on the fire TV? Simply upload the photos and the mirror is showing them :)
-
RE: MMM-SpotifyConnectUI
Okay, I followed your installation guide.
I git clone the spotify module and copy and paste the example code to my config.js but nothing is there. So no grey logo with the magic mirror letters.
For now I fixed it with deleting the module and git clone it again :O what ever happened before!?!
-
RE: MMM-SpotifyConnectUI
Yeah, thats why I´m so confused ^^ do i need to install any node helper? npm install stuff like in other modules?
-
RE: mmm-wu-moon-phases - Moonphases from Weather Underground
You need to change the name of the module in the example code, from ‘mmm-wu-moon-phases’ to ‘mmm-wu-moonphase’:
wrong:
modules: [
{
module: ‘mmm-wu-moon-phases’,
header: ‘Current Moon Phase’, // optionally you can add a header to this block
position: ‘top_right’, // this can be any of the regions.
config: {
// See ‘Configuration options’ for more information.
apikey: ‘abcde12345abcde12345abcde12345ab’,
country: ‘Switzerland’,
city: ‘Bern’,
apiLang: ‘EN’,} },
]
right:
modules: [
{
module: ‘mmm-wu-moonphase’,
header: ‘Current Moon Phase’, // optionally you can add a header to this block
position: ‘top_right’, // this can be any of the regions.
config: {
// See ‘Configuration options’ for more information.
apikey: ‘abcde12345abcde12345abcde12345ab’,
country: ‘Switzerland’,
city: ‘Bern’,
apiLang: ‘EN’,} },
]