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.

currentweather_compliments.js 643B

123456789101112131415161718192021222324252627282930313233
  1. /* Magic Mirror Test config current weather compliments
  2. *
  3. * By rejas https://github.com/rejas
  4. * MIT Licensed.
  5. */
  6. let config = require(process.cwd() + "/tests/configs/default.js").configFactory({
  7. modules: [
  8. {
  9. module: "compliments",
  10. position: "top_bar",
  11. config: {
  12. compliments: {
  13. snow: ["snow"]
  14. },
  15. updateInterval: 4000
  16. }
  17. },
  18. {
  19. module: "weather",
  20. position: "bottom_bar",
  21. config: {
  22. location: "Munich",
  23. apiKey: "fake key",
  24. initialLoadDelay: 3000
  25. }
  26. }
  27. ]
  28. });
  29. /*************** DO NOT EDIT THE LINE BELOW ***************/
  30. if (typeof module !== "undefined") {
  31. module.exports = config;
  32. }