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.

display.js 520B

1234567891011121314151617181920212223242526272829
  1. /* Magic Mirror Test config for display setters module using the helloworld module
  2. *
  3. * By Rejas
  4. * MIT Licensed.
  5. */
  6. let config = {
  7. modules: [
  8. {
  9. module: "helloworld",
  10. position: "top_bar",
  11. header: "test_header",
  12. config: {
  13. text: "Test Display Header"
  14. }
  15. },
  16. {
  17. module: "helloworld",
  18. position: "bottom_bar",
  19. config: {
  20. text: "Test Hide Header"
  21. }
  22. }
  23. ]
  24. };
  25. /*************** DO NOT EDIT THE LINE BELOW ***************/
  26. if (typeof module !== "undefined") {
  27. module.exports = config;
  28. }