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.

defaultmodules.js 509B

123456789101112
  1. /* Magic Mirror Default Modules List
  2. * Modules listed below can be loaded without the 'default/' prefix. Omitting the default folder name.
  3. *
  4. * By Michael Teeuw https://michaelteeuw.nl
  5. * MIT Licensed.
  6. */
  7. const defaultModules = ["alert", "calendar", "clock", "compliments", "currentweather", "helloworld", "newsfeed", "weatherforecast", "updatenotification", "weather"];
  8. /*************** DO NOT EDIT THE LINE BELOW ***************/
  9. if (typeof module !== "undefined") {
  10. module.exports = defaultModules;
  11. }