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 327B

1234567891011121314151617181920
  1. /* Magic Mirror
  2. * Module: HelloWorld
  3. *
  4. * By Michael Teeuw https://michaelteeuw.nl
  5. * MIT Licensed.
  6. */
  7. Module.register("helloworld", {
  8. // Default module config.
  9. defaults: {
  10. text: "Hello World!"
  11. },
  12. getTemplate: function () {
  13. return "helloworld.njk";
  14. },
  15. getTemplateData: function () {
  16. return this.config;
  17. }
  18. });