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_options.js 637B

1234567891011121314151617181920212223242526272829
  1. /* Magic Mirror Test config default weather
  2. *
  3. * By fewieden https://github.com/fewieden
  4. * MIT Licensed.
  5. */
  6. let config = require(process.cwd() + "/tests/configs/default.js").configFactory({
  7. modules: [
  8. {
  9. module: "weather",
  10. position: "bottom_bar",
  11. config: {
  12. location: "Munich",
  13. apiKey: "fake key",
  14. initialLoadDelay: 3000,
  15. useBeaufort: false,
  16. showWindDirectionAsArrow: true,
  17. showSun: false,
  18. showHumidity: true,
  19. roundTemp: true,
  20. degreeLabel: true
  21. }
  22. }
  23. ]
  24. });
  25. /*************** DO NOT EDIT THE LINE BELOW ***************/
  26. if (typeof module !== "undefined") {
  27. module.exports = config;
  28. }