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_12hr.js 390B

123456789101112131415161718192021
  1. /* Magic Mirror Test config for default clock module
  2. *
  3. * By Rodrigo Ramírez Norambuena https://rodrigoramirez.com
  4. * MIT Licensed.
  5. */
  6. let config = {
  7. language: "es",
  8. timeFormat: 12,
  9. modules: [
  10. {
  11. module: "clock",
  12. position: "middle_center"
  13. }
  14. ]
  15. };
  16. /*************** DO NOT EDIT THE LINE BELOW ***************/
  17. if (typeof module !== "undefined") {
  18. module.exports = config;
  19. }