MagicMirror Forum
    • Recent
    • Tags
    • Unsolved
    • Solved
    • MagicMirror² Repository
    • Documentation
    • 3rd-Party-Modules
    • Donate
    • Discord
    • Register
    • Login
    1. Home
    2. paviro
    3. Best
    A New Chapter for MagicMirror: The Community Takes the Lead
    Read the statement by Michael Teeuw here.
    Offline
    • Profile
    • Following 2
    • Followers 30
    • Topics 28
    • Posts 371
    • Groups 3

    Posts

    Recent Best Controversial
    • RE: Alot of SPAM lately on this forum!

      @yawns Mhh admin panel says “email verification required” will check if there is a second option somewhere…

      posted in Forum
      paviroP
      paviro
    • 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.

      0_1462364863717_wunderlist.png

      [card:paviro/MMM-Wunderlist]

      If you have any questions or requests for future versions, don’t hesitate to ask!

      posted in Productivity productivity
      paviroP
      paviro
    • 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.

      posted in Development
      paviroP
      paviro
    • 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 :)

      posted in General Discussion
      paviroP
      paviro
    • 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 :)

      posted in Announcements
      paviroP
      paviro
    • 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! :)

      posted in Showcase
      paviroP
      paviro
    • RE: Forum Errors....

      @pascal456 Is this still an issue for you? I changed some stuff a while ago.

      posted in Forum
      paviroP
      paviro
    • 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 execute sudo 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)
      	}
      });
      
      posted in Development
      paviroP
      paviro
    • 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.

      Image captured behind my house

      You can find me on my blog, GitHub, Twitter, 500px, Vimeo and Instagram.

      posted in General Discussion
      paviroP
      paviro
    • RE: MagicMirror is voted number 1 in the MagPi Top 50!

      Wooohaaaiii! :) That’s amazing, congratulations @MichMich! :))

      posted in Announcements
      paviroP
      paviro
    • 1 / 1