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.

default.js 343B

123456789101112131415161718192021
  1. /* Magic Mirror Test config sample module alert
  2. *
  3. * By rejas
  4. * MIT Licensed.
  5. */
  6. let config = {
  7. modules: [
  8. {
  9. module: "alert",
  10. config: {
  11. display_time: 1000000,
  12. welcome_message: true
  13. }
  14. }
  15. ]
  16. };
  17. /*************** DO NOT EDIT THE LINE BELOW ***************/
  18. if (typeof module !== "undefined") {
  19. module.exports = config;
  20. }