Advertisement
acd2020

Untitled

Jun 24th, 2016
211
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.56 KB | None | 0 0
  1. /* Magic Mirror Config Sample
  2. *
  3. * By Michael Teeuw http://michaelteeuw.nl
  4. * MIT Licensed.
  5. */
  6.  
  7. var config = {
  8. port: 8080,
  9.  
  10. language: 'fr',
  11. timeFormat: 24,
  12. units: 'metric',
  13.  
  14. modules: [
  15. {
  16. module: 'MMM-HTTPRequestDisplay',
  17. position: 'bottom_bar', // This can be any of the regions. Best results in left or right regions.
  18. header: 'MMM-HTTPRequestDisplay', // This is optional
  19. config: {
  20. httpRequestURL: 'http://192.168.1.248:8889/status.xml',
  21. // See 'Configuration options' for more information.
  22. }
  23. },
  24. {
  25. module: 'calendar',
  26. header: 'Calendrier familial',
  27. position: 'top_left',
  28. config: {
  29. calendars: [
  30. {
  31. symbol: 'calendar-check-o ',
  32. url: 'https://calendar.google.com/calendar/ical/111111111116ad4a25ade0d02f87534394/basic.ics'
  33. }
  34. ]
  35. }
  36. },
  37. {
  38. module: 'compliments',
  39. position: 'lower_third'
  40. },
  41. {
  42. module: 'currentweather',
  43. position: 'top_right',
  44. config: {
  45. location: 'Walhain BE',
  46. locationID: '', //ID from bulk.openweather.org/sample/
  47. appid: '7bf92eff2429e19085453abf716ec1c2'
  48. }
  49. },
  50. {
  51. module: 'weatherforecast',
  52. position: 'top_right',
  53. header: 'Weather Forecast',
  54. config: {
  55. location: 'Walhain BE',
  56. locationID: '', //ID from bulk.openweather.org/sample/
  57. appid: '7bf92eff2429e19085453abf716ec1c2'
  58. }
  59. }
  60.  
  61. ]
  62.  
  63. };
  64.  
  65. /*************** DO NOT EDIT THE LINE BELOW ***************/
  66. if (typeof module !== 'undefined') {module.exports = config;}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement