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.

helloworld.js 412B

123456789101112131415161718192021
  1. /* Magic Mirror Test config sample module hello world
  2. *
  3. * By Rodrigo Ramírez Norambuena https://rodrigoramirez.com
  4. * MIT Licensed.
  5. */
  6. let config = {
  7. modules: [
  8. {
  9. module: "helloworld",
  10. position: "bottom_bar",
  11. config: {
  12. text: "Test HelloWorld Module"
  13. }
  14. }
  15. ]
  16. };
  17. /*************** DO NOT EDIT THE LINE BELOW ***************/
  18. if (typeof module !== "undefined") {
  19. module.exports = config;
  20. }