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.

forecastweather_units.js 565B

12345678910111213141516171819202122232425262728
  1. /* Magic Mirror Test config default weather
  2. *
  3. * By rejas
  4. * MIT Licensed.
  5. */
  6. let config = require(process.cwd() + "/tests/configs/default.js").configFactory({
  7. units: "imperial",
  8. modules: [
  9. {
  10. module: "weather",
  11. position: "bottom_bar",
  12. config: {
  13. type: "forecast",
  14. location: "Munich",
  15. apiKey: "fake key",
  16. weatherEndpoint: "/forecast/daily",
  17. initialLoadDelay: 3000,
  18. decimalSymbol: "_"
  19. }
  20. }
  21. ]
  22. });
  23. /*************** DO NOT EDIT THE LINE BELOW ***************/
  24. if (typeof module !== "undefined") {
  25. module.exports = config;
  26. }