Software zum Installieren eines Smart-Mirror Frameworks , zum Nutzen von hochschulrelevanten Informationen, auf einem Raspberry-Pi.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

README.md 1.6KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. # MMM-Flick-Gestures
  2. This module enables you to use the Flick Tracking and Gesture board with your Magic Mirror.<br>
  3. See: https://www.seeedstudio.com/Flick-Large-Standalone-3D-Tracking-and-Gesture-Breakout-p-2952.html
  4. This module will emit 2 events - PAGE_DECREMENT when swiped left and PAGE_INCREMENT when swiped right.
  5. # Tested with
  6. - Flick Large – Standalone 3D Tracking and Gesture Breakout
  7. - MMM-Pages - Excellent module for interfacing with a multi-page Magic Mirror.
  8. # Not tested with - but should work
  9. - Flick Zero
  10. - Flick HAT
  11. - Any board using MGC3130 3D Tracking and Gesture Controller
  12. # Demo
  13. Coming..
  14. ## Using the module...
  15. To use this module, add it to the modules array in the 'config/config.js' file:
  16. ```
  17. modules: [
  18. {
  19. module: 'MMM-flick-gestures'
  20. },
  21. ]
  22. ```
  23. ## Requirements
  24. Flicklib python library installed <br>
  25. MGC3130 controller board
  26. ## Installation
  27. ```
  28. pip install flicklib
  29. cd ~/MagicMirror/modules
  30. git clone https://github.com/jancalve/MMM-flick-gestures
  31. cd MMM-flick-gestures
  32. npm install
  33. ```
  34. ## Known issues
  35. This module expects to be installed in /home/pi/MagicMirror/modules/MMM-flick-gestures <br>
  36. If your path is different, you'll have to update myPythonScriptPath in node_helper.js to reflect
  37. your MagicMirror path.<br>
  38. (If anyone has any idea how to make this more user-friendly, do make a pull request!)
  39. ## Future improvements
  40. Support north/south/airwheel/tap gestures<br>
  41. Configurable gesture to event mapping<br>
  42. ## Acknowledgements...
  43. This module is essentially a NodeJS wrapper of the Flick Board demo scripts written in python. <br>
  44. See https://github.com/PiSupply/Flick/blob/master/bin/flick-demo <br>