@yawns Mhh admin panel says “email verification required” will check if there is a second option somewhere…
Read the statement by Michael Teeuw here.
Best posts made by paviro
-
RE: Alot of SPAM lately on this forum!
-
Wunderlist - your todos on the mirror
With MMM-Wunderlist you can add one or more widgets to your mirror displaying as many different todo-lists from Wunderlist as you like. Of course you are not limited to one list per widget, since the module can combine them for you.
[card:paviro/MMM-Wunderlist]
If you have any questions or requests for future versions, don’t hesitate to ask!
-
RE: Usind date from one module to another
Not sure if important but should we start thinking about privacy? A malicious module would get all information from any module that broadcasts its data.
-
RE: Introduce yourself!
Good idea! Nice to get to know the people behind the GitHub comments a bit. Will add mine as soon as I finished the housing of my mirror :smile:
EDIT: Just noticed this is not in the show your mirror category, so I don’t actually have to finish my mirror for it :D Will add mine in a second :)
-
RE: Website Launched
Congrats on the site! Looking forward to be more active on the forum again once I am a bit more used to living in Berlin :)
-
RE: Not really a mirror at all - but is really helpful
Would be great if you would upload your CSS to Github and share it here! :)
-
RE: Forum Errors....
@pascal456 Is this still an issue for you? I changed some stuff a while ago.
-
RE: GPIO without root
Found a workaround! Use the shell within node to export the pins. Works without root if the user is added to the
gpio group
, to do that executesudo useradd -g pi gpio
.
Setup the pins
const exec = require('child_process').exec; exec("echo '22' > /sys/class/gpio/export", null); exec("echo 'in' > /sys/class/gpio/gpio22/direction", null); exec("echo '17' > /sys/class/gpio/export", null); exec("echo 'out' > /sys/class/gpio/gpio17/direction", null);
Control the pins
gpio.setup('sys'); gpio.wiringPiISR(22, gpio.INT_EDGE_BOTH, function(delta) { if (gpio.digitalRead(22) == 1) { console.log("High"); gpio.digitalWrite(17, 1) } else if (gpio.digitalRead(22) == 0) { console.log("Low"); gpio.digitalWrite(17, 0) } });
-
RE: Introduce yourself!
My name is Paul-Vincent Roll, I’m from Germany and currently 19 years old (doing my finals in school at the moment). I also happen to run a small business, which I try to maintain besides going to school. Mine is about videos though and not the kind of things we are doing here (can never really decide what I enjoy more… :sweat_smile:).
I love coding and building stuff but in most cases my coding work is sadly pretty much hacked together, still have to learn a lot of basic stuff but I will with time :slight_smile: I am currently planning to write an adventure game with a friend of mine, we’ll see how that goes.
Besides the “raw-computer” stuff I absolutely love (already said I can’t decide which one I enjoy more so it’s fine I use the same term again :smile:) crafting images and capturing moments with my camera, be it in video or still form.
You can find me on my blog, GitHub, Twitter, 500px, Vimeo and Instagram.
-
RE: MagicMirror is voted number 1 in the MagPi Top 50!
Wooohaaaiii! :) That’s amazing, congratulations @MichMich! :))