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.

clock_analog.js 364B

123456789101112131415161718192021
  1. /* Magic Mirror Test config for analog clock face
  2. *
  3. * MIT Licensed.
  4. */
  5. let config = {
  6. modules: [
  7. {
  8. module: "clock",
  9. position: "middle_center",
  10. config: {
  11. displayType: "analog",
  12. analogFace: "face-006"
  13. }
  14. }
  15. ]
  16. };
  17. /*************** DO NOT EDIT THE LINE BELOW ***************/
  18. if (typeof module !== "undefined") {
  19. module.exports = config;
  20. }