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_showWeek.js 464B

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