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.

compliments_parts_day.js 601B

123456789101112131415161718192021222324252627
  1. /* Magic Mirror Test config for default compliments
  2. *
  3. * By Rodrigo Ramírez Norambuena https://rodrigoramirez.com
  4. * MIT Licensed.
  5. */
  6. let config = {
  7. timeFormat: 12,
  8. modules: [
  9. {
  10. module: "compliments",
  11. position: "middle_center",
  12. config: {
  13. compliments: {
  14. morning: ["Hi", "Good Morning", "Morning test"],
  15. afternoon: ["Hello", "Good Afternoon", "Afternoon test"],
  16. evening: ["Hello There", "Good Evening", "Evening test"]
  17. }
  18. }
  19. }
  20. ]
  21. };
  22. /*************** DO NOT EDIT THE LINE BELOW ***************/
  23. if (typeof module !== "undefined") {
  24. module.exports = config;
  25. }