-
Notifications
You must be signed in to change notification settings - Fork 149
/
modules.json
3180 lines (3180 loc) · 115 KB
/
modules.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
[
{
"longname": "MagicMirror²-Module-Template",
"id": "roramirez/MagicMirror-Module-Template",
"url": "https://github.com/roramirez/MagicMirror-Module-Template",
"author": "MichMich",
"desc": "Module to help developers to start building their own modules for the MagicMirror²."
},
{
"longname": "MMM-Button",
"id": "ptrbld/MMM-Button",
"url": "https://github.com/ptrbld/MMM-Button",
"author": "PtrBld",
"desc": "Use a button to hide or show different modules via a broadcast message."
},
{
"longname": "MMM-Buttons",
"id": "Jopyth/MMM-Buttons",
"url": "https://github.com/Jopyth/MMM-Buttons",
"author": "Jopyth",
"desc": "More complicated, but also more powerful: multiple buttons, configurable notifications, different actions on short and long press."
},
{
"longname": "MMM-ModuleToggleButton",
"id": "balassy/MMM-ModuleToggleButton",
"url": "https://github.com/balassy/MMM-ModuleToggleButton",
"author": "balassy",
"desc": "Shows or hides other modules when a momentary push button is pressed. Useful for development and maintenance after the module is deployed."
},
{
"longname": "MMM-Carousel",
"id": "barnabycolby/MMM-Carousel",
"url": "https://github.com/barnabycolby/MMM-Carousel",
"author": "barnabycolby",
"desc": "Rotate modules, to save space on screen."
},
{
"longname": "MMM-Carousel w/ Navigation",
"id": "shbatm/MMM-Carousel",
"url": "https://github.com/shbatm/MMM-Carousel",
"author": "barnabycolby & shbatm",
"desc": "Fork of MMM-Carousel with page indicators and navigation buttons."
},
{
"longname": "MMM-connection-status",
"id": "sheyabernstein/MMM-connection-status",
"url": "https://github.com/sheyabernstein/MMM-connection-status",
"author": "SheyaBernstein",
"desc": "Display internet connection status for MagicMirror²"
},
{
"longname": "mm-hide-all",
"id": "masters1222/mm-hide-all",
"url": "https://github.com/masters1222/mm-hide-all",
"author": "masters1222",
"desc": "Hide all modules on your screen."
},
{
"longname": "MMM-Glance",
"id": "eouia/MMM-Glance",
"url": "https://github.com/eouia/MMM-Glance",
"author": "eouia",
"desc": "Show specific module(s) and hide others for a some time by notification or command."
},
{
"longname": "MMM-GroveGestures",
"id": "eouia/MMM-GroveGestures",
"url": "https://github.com/eouia/MMM-GroveGestures",
"author": "eouia",
"desc": "detecting 3D gesture with GroveGesture Sensor(PAJ7620u2)"
},
{
"longname": "MMM-Logging",
"id": "shbatm/MMM-Logging",
"url": "https://github.com/shbatm/MMM-Logging",
"author": "shbatm",
"desc": "More details and customization for MM's Node.js console logs."
},
{
"longname": "MMM-ModuleScheduler",
"id": "ianperrin/MMM-ModuleScheduler",
"url": "https://github.com/ianperrin/MMM-ModuleScheduler",
"author": "ianperrin",
"desc": "Create schedules to control when other modules are shown, hidden or dimmed and to send notifications to other modules."
},
{
"longname": "MMM-Navigate",
"id": "Ax-LED/MMM-Navigate",
"url": "https://github.com/Ax-LED/MMM-Navigate",
"author": "AxLED",
"desc": "A module to connect a rotary encoder to MagicMirror² and use it for Navigation inside of MagicMirror²."
},
{
"longname": "MMM-NetworkConnection",
"id": "slametps/MMM-NetworkConnection",
"url": "https://github.com/slametps/MMM-NetworkConnection",
"author": "Slamet PS",
"desc": "Display network connection status (ping, download speed, upload speed)."
},
{
"longname": "MMM-network-signal",
"id": "PoOwAa/MMM-network-signal",
"url": "https://github.com/PoOwAa/MMM-network-signal",
"author": "PoOwAa",
"desc": "Display a solid wifi logo as network signal based on ping speed."
},
{
"longname": "MMM-NotificationTrigger",
"id": "eouia/MMM-NotificationTrigger",
"url": "https://github.com/eouia/MMM-NotificationTrigger",
"author": "eouia",
"desc": "MMM-NotificationTrigger is a simple notification relay which can convert notifications from TRIGGER_NOTIFICATION to FIRE_NOTIFICATION"
},
{
"longname": "MMM-OnScreenMenu",
"id": "shbatm/MMM-OnScreenMenu",
"url": "https://github.com/shbatm/MMM-OnScreenMenu",
"author": "shbatm",
"desc": "Simple On-Screen Menu for controlling the MagicMirror²"
},
{
"longname": "MMM-pages",
"id": "edward-shen/MMM-pages",
"url": "https://github.com/edward-shen/MMM-pages",
"author": "edward-shen",
"desc": "An maintained module that allows you to rotate out pages of modules!"
},
{
"longname": "MMM-page-indicator",
"id": "edward-shen/MMM-page-indicator",
"url": "https://github.com/edward-shen/MMM-page-indicator",
"author": "edward-shen",
"desc": "A helper module to display what page you're on. Intended to be used with other modules that rotate out modules."
},
{
"longname": "MMM-Page-Selector",
"id": "Veldrovive/MMM-Page-Selector",
"url": "https://github.com/Veldrovive/MMM-Page-Selector",
"author": "Veldrovive",
"desc": "Configure location and visibity of modules on defined pages."
},
{
"longname": "MMM-Remote-Control",
"id": "Jopyth/MMM-Remote-Control",
"url": "https://github.com/Jopyth/MMM-Remote-Control",
"author": "Jopyth",
"desc": "Cleanly shutdown (or reboot) your mirror, edit which modules are shown on your mirror and turn your monitor off and on from a simple website, i.e. from your smartphone."
},
{
"longname": "MMM-Remote-Control-Repository",
"id": "eouia/MMM-Remote-Control-Repository",
"url": "https://github.com/eouia/MMM-Remote-Control-Repository",
"author": "eouia",
"desc": "Plugin for `MMM-Remote-Control` to update installable modules automatically."
},
{
"longname": "MMM-Tabulator",
"id": "E3V3A/MMM-Tabulator",
"url": "https://github.com/E3V3A/MMM-Tabulator",
"author": "E:V:A",
"desc": "A Demo module for using [Tabulator](http://tabulator.info/) to directly parse JSON/XML into MM DHTML tables."
},
{
"longname": "MMM-ViewNotifications",
"id": "glitch452/MMM-ViewNotifications",
"url": "https://github.com/glitch452/MMM-ViewNotifications",
"author": "glitch452",
"desc": "Display a list of notifications that have been broadcast to all the modules."
},
{
"longname": "MMM-Dynamic-Modules",
"id": "Toreke/MMM-Dynamic-Modules",
"url": "https://github.com/Toreke/MMM-Dynamic-Modules",
"author": "Toreke",
"desc": "Change positions of modules."
},
{
"longname": "MMM-AVStock",
"id": "eouia/MMM-AVStock",
"url": "https://github.com/eouia/MMM-AVStock",
"author": "eouia",
"desc": "MagicMirror² module for displaying stock price with Alphavantage API."
},
{
"longname": "MMM-CoinMarketCap",
"id": "glitch452/MMM-CoinMarketCap",
"url": "https://github.com/glitch452/MMM-CoinMarketCap",
"author": "glitch452",
"desc": "Display cryptocurrency information from the Coin Market Cap website. Ticker Price, Logos, Sparkline Graphs, etc..."
},
{
"longname": "MMM-bitcoin",
"id": "valmassoi/MMM-bitcoin",
"url": "https://github.com/valmassoi/MMM-bitcoin",
"author": "valmassoi",
"desc": "Display bitcoin ticker price."
},
{
"longname": "MMM-ethereum",
"id": "Deathrid3r747/MMM-ethereum",
"url": "https://github.com/Deathrid3r747/MMM-ethereum",
"author": "Deathrid3r747",
"desc": "Display ticker with ethereum USD price"
},
{
"longname": "MMM-LICE",
"id": "mykle1/MMM-LICE",
"url": "https://github.com/mykle1/MMM-LICE",
"author": "Mykle1",
"desc": "Live International Currency Exchange"
},
{
"longname": "MMM-SingleStock",
"id": "balassy/MMM-SingleStock",
"url": "https://github.com/balassy/MMM-SingleStock",
"author": "balassy",
"desc": "Displays the stock price of a single company without any fancy animation."
},
{
"longname": "MMM-Stock",
"id": "hakanmhmd/MMM-Stock",
"url": "https://github.com/hakanmhmd/MMM-Stock",
"author": "hakanmhmd",
"desc": "Displays current stock prices of companies using YAHHO FINANCE API..."
},
{
"longname": "stocks",
"id": "alexyak/stocks",
"url": "https://github.com/alexyak/stocks",
"author": "alexyak",
"desc": "Display a scrolling stocks ticker."
},
{
"longname": "MMM-cryptocurrency",
"id": "matteodanelli/MMM-cryptocurrency",
"url": "https://github.com/matteodanelli/MMM-cryptocurrency",
"author": "matteodanelli",
"desc": "Display cryptocurrencies ticker price, with graphs and changes over time."
},
{
"longname": "MMM-crypto-portfolio",
"id": "spoturdeal/MMM-crypto-portfolio",
"url": "https://github.com/spoturdeal/MMM-crypto-portfolio",
"author": "Carl",
"desc": "Extended Display cryptocurrencies based on Matteo Danelli's module shows the total of your assets over time."
},
{
"longname": "MMM-CrisisInformationSweden",
"id": "boghammar/MMM-CrisisInformationSweden",
"url": "https://github.com/boghammar/MMM-CrisisInformationSweden",
"author": "boghammar",
"desc": "News feed from the **Swedish** Government Crisis Information (Krisinformation.se)."
},
{
"longname": "MMM-DailyBibleVerse",
"id": "arthurgarzajr/MMM-DailyBibleVerse",
"url": "https://github.com/arthurgarzajr/MMM-DailyBibleVerse",
"author": "Arthur Garza",
"desc": "A module that displays the verse of the day from www.biblegateway.com."
},
{
"longname": "MMM-News",
"id": "eouia/MMM-News",
"url": "https://github.com/eouia/MMM-News",
"author": "eouia",
"desc": "Displaying NEWS with picture, touchable and customizable."
},
{
"longname": "MMM-RandomQuranAyah",
"id": "slametps/MMM-RandomQuranAyah",
"url": "https://github.com/slametps/MMM-RandomQuranAyah",
"author": "Slamet PS",
"desc": "Display ayah/verse of Qur'an randomly."
},
{
"longname": "MMM-PrayerTime",
"id": "slametps/MMM-PrayerTime",
"url": "https://github.com/slametps/MMM-PrayerTime",
"author": "Slamet PS",
"desc": "Displays moslem praying time with Adhan recital."
},
{
"longname": "MMM-shabbat",
"id": "sheyabernstein/MMM-shabbat",
"url": "https://github.com/sheyabernstein/MMM-shabbat",
"author": "SheyaBernstein",
"desc": "Display shabbat times for the current week and optionally hide all modules."
},
{
"longname": "MMM-GoogleFit",
"id": "amcolash/MMM-GoogleFit",
"url": "https://github.com/amcolash/MMM-GoogleFit",
"author": "amcolash",
"desc": "Display google fit daily step count and weights."
},
{
"longname": "MMM-WeeklySchedule",
"id": "pinsdorf/MMM-WeeklySchedule",
"url": "https://github.com/pinsdorf/MMM-WeeklySchedule",
"author": "pinsdorf",
"desc": "Display weekly recurring timetables such as class schedules."
},
{
"longname": "MMM-wiki",
"id": "mihairinzis/MMM-wiki",
"url": "https://github.com/mihairinzis/MMM-wiki",
"author": "mrinzis",
"desc": "Displays random Wikipedia snippets."
},
{
"longname": "MMM-TracCar",
"id": "asimhsidd/MMM-TracCar",
"url": "https://github.com/asimhsidd/MMM-TracCar",
"author": "asimhsidd",
"desc": "Track moving objects through Traccar.org APIs on google maps. This is based on a websocket connection to the Traccar.org server over which the locations of all the registered users are received upon any update. Not only the markers are updated but also the map's center & zoom level. All online users have a green icon, rest are red. Error handling is built in too."
},
{
"longname": "MMM-GeoTracking",
"id": "asimhsidd/MMM-GeoTracking",
"url": "https://github.com/asimhsidd/MMM-GeoTracking",
"author": "asimhsidd",
"desc": "Geo-track a moving object on the map by continuously listening to a pubnub channel where the publisher (example file attached) has to publish the new location (lat, lon) as and when moves"
},
{
"longname": "MMM-DublinRTPI",
"id": "galaktor/MMM-DublinRTPI",
"url": "https://github.com/galaktor/MMM-DublinRTPI",
"author": "galaktor",
"desc": "Customisable real-time stop data for Dublin Bus, Luas and IrishRail stops"
},
{
"longname": "DWD-RealtimeIrishRail",
"id": "archerydwd/DWD-RealtimeIrishRail",
"url": "https://github.com/archerydwd/DWD-RealtimeIrishRail",
"author": "archerydwd",
"desc": "Display Realtime Irish Rail data for a targeted station."
},
{
"longname": "MMM-bustimes",
"id": "73cirdan/MMM-bustimes",
"url": "https://github.com/73cirdan/MMM-bustimes",
"author": "cirdan",
"desc": "Display Dutch bus and some other public transports for a targeted set of bus stops."
},
{
"longname": "MMM-CTA",
"id": "NateDee/MMM-CTA",
"url": "https://github.com/NateDee/MMM-CTA",
"author": "NateDee",
"desc": "Displays arrival times for the Chicago Transit Authority 'L' system buses and trains."
},
{
"longname": "MMM-DCMetroTrainTimes",
"id": "AdamMoses-GitHub/MMM-DCMetroTrainTimes",
"url": "https://github.com/AdamMoses-GitHub/MMM-DCMetroTrainTimes",
"author": "AdamMoses-GitHub",
"desc": "Displays the arrival time of trains to any station in the Washington DC subway metro system (WMATA) as well as incidents reported for any of the line colors."
},
{
"longname": "MMM-DVB",
"id": "skastenholz/MMM-DVB",
"url": "https://github.com/skastenholz/MMM-DVB",
"author": "skastenholz",
"desc": "Station monitor for the Dresden/Germany local transport (DVB) bus, tram and train system."
},
{
"longname": "MMM-EFA-departures",
"id": "Dom1n1c/MMM-EFA-departures",
"url": "https://github.com/Dom1n1c/MMM-EFA-departures",
"author": "Dom1n1c",
"desc": "Station monitor for local transport companies using the EFA system."
},
{
"longname": "MMM-FAA-Delay",
"id": "nigel-daniels/MMM-FAA-Delay",
"url": "https://github.com/nigel-daniels/MMM-FAA-Delay",
"author": "nigel-daniels",
"desc": "Display information published by the FAA on delays and weather conditions at some US airports. Note: this has been updated following a change by the FAA to the API."
},
{
"longname": "MMM-FlightsAbove",
"id": "E3V3A/MMM-FlightsAbove",
"url": "https://github.com/E3V3A/MMM-FlightsAbove",
"author": "E:V:A",
"desc": "A flight radar that display airplane/flight details of what is currently flying in the airspace above some location."
},
{
"longname": "MMM-Fuel",
"id": "fewieden/MMM-Fuel",
"url": "https://github.com/fewieden/MMM-Fuel",
"author": "fewieden",
"desc": "Display Gas Station prices."
},
{
"longname": "MMM-GoogleMapsTraffic",
"id": "vicmora/MMM-GoogleMapsTraffic",
"url": "https://github.com/vicmora/MMM-GoogleMapsTraffic",
"author": "vicmora",
"desc": "Displays a Google map, centered at provided coordinates, with traffic information."
},
{
"longname": "MMM-google-route",
"id": "mrdis/MMM-google-route",
"url": "https://github.com/mrdis/MMM-google-route",
"author": "mrdis",
"desc": "Displays the two best routes from an origin to a destination, using Google Directions API."
},
{
"longname": "MMM-HH-LocalTransport",
"id": "georg90/MMM-HH-LocalTransport",
"url": "https://github.com/georg90/MMM-HH-LocalTransport",
"author": "georg90",
"desc": "Display local transport in Hamburg/Germany."
},
{
"longname": "MMM-Hive",
"id": "flick116/MMM-Hive",
"url": "https://github.com/flick116/MMM-Hive",
"author": "MMM-Hive",
"desc": "Displays Hive (British Gas) inside / outside temperature."
},
{
"longname": "MMM-HK-KMB",
"id": "winstonma/MMM-HK-KMB",
"url": "https://github.com/winstonma/MMM-HK-KMB",
"author": "MMM-HK-KMB",
"desc": "Display the KMB Estimated Time of Arrival in Hong Kong."
},
{
"longname": "MMM-HK-Transport",
"id": "winstonma/MMM-HK-Transport",
"url": "https://github.com/winstonma/MMM-HK-Transport",
"author": "MMM-HK-Transport",
"desc": "Display the transport info in Hong Kong."
},
{
"longname": "MMM-iHaveBeenThere",
"id": "basti0001/MMM-iHaveBeenThere",
"url": "https://github.com/basti0001/MMM-iHaveBeenThere",
"author": "basti0001",
"desc": "Visulizes your places where you have been traveled..or intend to go.......or or or."
},
{
"longname": "MMM-JNV",
"id": "michgue/MMM-JNV",
"url": "https://github.com/michgue/MMM-JNV",
"author": "michgue",
"desc": "Station monitor for the Jena/Germany local transport (JNV) bus and tram."
},
{
"longname": "MMM-KVV",
"id": "yo-less/MMM-KVV",
"url": "https://github.com/yo-less/MMM-KVV",
"author": "yo-less",
"desc": "Station monitor for the Karlsruhe/Germany local transport (KVV) bus, tram and train system."
},
{
"longname": "MMM-LocalTransport",
"id": "CFenner/MMM-LocalTransport",
"url": "https://github.com/CFenner/MMM-LocalTransport",
"author": "CFenner",
"desc": "Display the next public transport connections for a certain route."
},
{
"longname": "MMM-MBTA",
"id": "edward-shen/MMM-MBTA",
"url": "https://github.com/edward-shen/MMM-MBTA",
"author": "edward-shen",
"desc": "Displays information about a Massachusetts Bay Transportation Authority (MBTA) station, including upcoming arrivals and alerts and warnings."
},
{
"longname": "MMM-MTA-NextBus",
"id": "tie624/MMM-MTA-NextBus",
"url": "https://github.com/tie624/MMM-MTA-NextBus",
"author": "Tie",
"desc": "Displays the arrival time of the next few buses for a particular bus stop. This is for the Metropolitan Transit Authority (MTA) in New York City."
},
{
"longname": "MMM-mvgmunich",
"id": "mrVragec/MMM-mvgmunich",
"url": "https://github.com/mrVragec/MMM-mvgmunich",
"author": "mrVragec",
"desc": "Displays the public transport information for Munich - Germany."
},
{
"longname": "MMM-MyCommute",
"id": "jclarke0000/MMM-MyCommute",
"url": "https://github.com/jclarke0000/MMM-MyCommute",
"author": "Jeff Clarke",
"desc": "Displays your commute times to several destinations. Highly configurable."
},
{
"longname": "MMM-MyTTC",
"id": "jclarke0000/MMM-MyTTC",
"url": "https://github.com/jclarke0000/MMM-MyTTC",
"author": "Jeff Clarke",
"desc": "Displays Toronto Transit schedule for your selected routes and stops."
},
{
"longname": "MMM-NesteBussAtB",
"id": "ottopaulsen/MMM-NesteBussAtB",
"url": "https://github.com/ottopaulsen/MMM-NesteBussAtB",
"author": "ottopaulsen",
"desc": "A MagicMirror² Module that shows how many minutes until the next bus(es) goes from given bus stops."
},
{
"longname": "MMM-nextbike",
"id": "yo-less/MMM-nextbike",
"url": "https://github.com/yo-less/MMM-nextbike",
"author": "yo-less",
"desc": "Station monitor for the nextbike bike-sharing network."
},
{
"longname": "MMM-NJTransit",
"id": "dimitrystd/MMM-NJTransit",
"url": "https://github.com/dimitrystd/MMM-NJTransit",
"author": "Dmitry Studynskyi",
"desc": "Real-time bus tracking for NJ Transit."
},
{
"longname": "MMM-NMBS-Connection",
"id": "Jan-Bart/MMM-NMBS-Connection",
"url": "https://github.com/Jan-Bart/MMM-NMBS-Connection",
"author": "Jan-Bart",
"desc": "Display upcoming trains between 2 NMBS/SNCB stations. (Belgium)"
},
{
"longname": "MMM-nstreinen",
"id": "qistoph/MMM-nstreinen",
"url": "https://github.com/qistoph/MMM-nstreinen",
"author": "qistoph",
"desc": "Shows informantion on trains departuring a configurable Dutch trainstation."
},
{
"longname": "MMM-OakBus",
"id": "IbrahimIrfan/MMM-OakBus",
"url": "https://github.com/IbrahimIrfan/MMM-OakBus",
"author": "IbrahimIrfan",
"desc": "Real-time bus tracking for Oakville, ON Bus transit."
},
{
"longname": "MMM-OneBusAway",
"id": "jugler/MMM-OneBusAway",
"url": "https://github.com/jugler/MMM-OneBusAway",
"author": "Jesus Silva",
"desc": "Shows ETA for buses for a given stop using OneBusAway API"
},
{
"longname": "MMM-OpelStatuses",
"id": "santanachia/MMM-OpelStatuses",
"url": "https://github.com/santanachia/MMM-OpelStatuses",
"author": "Santanachia",
"desc": "Shows current production satatus of your Opel/Vauxhall"
},
{
"longname": "MMM-OsloCityBike",
"id": "TobbenTM/MMM-OsloCityBike",
"url": "https://github.com/TobbenTM/MMM-OsloCityBike",
"author": "TobbenTM",
"desc": "Shows nearby CityBike stations in Oslo, and the number of bikes available at each."
},
{
"longname": "MMM-Paris-RATP-PG",
"id": "da4throux/MMM-Paris-RATP-PG",
"url": "https://github.com/da4throux/MMM-Paris-RATP-PG",
"author": "da4throux",
"desc": "Time to the next buses, metros, rers & tramways for Paris Network (RATP), along with: the traffic status for selected lines, the risk of rain in the next hour, autolib and velib stations status."
},
{
"longname": "MMM-Nantes-TAN",
"id": "normyx/MMM-Nantes-TAN",
"url": "https://github.com/normyx/MMM-Nantes-TAN",
"author": "normyx",
"desc": "time to the next buses, tramways or navibus from a list of stations / lines for Nantes (TAN)."
},
{
"longname": "MMM-Toulouse-Transports",
"id": "MMM-Toulouse-Transports/",
"url": "https://lonewanderer-ghhub.io/MMM-Toulouse-Transports/",
"author": "LoneWanderer-GH",
"desc": "time to the next buses lines for Toulouse (Tisseo)."
},
{
"longname": "MMM-pekavm",
"id": "ytmytm/MMM-pekavm",
"url": "https://github.com/ytmytm/MMM-pekavm",
"author": "ytmytm",
"desc": "Station monitor for tram and bus system in Poznań."
},
{
"longname": "MMM-PublicTransportBerlin",
"id": "deg0nz/MMM-PublicTransportBerlin",
"url": "https://github.com/deg0nz/MMM-PublicTransportBerlin",
"author": "deg0nz",
"desc": "Display departures for public transport in Berlin and Brandenburg (Covers VBB Area)."
},
{
"longname": "MMM-PublicTransportLeipzig",
"id": "raywo/MMM-PublicTransportLeipzig",
"url": "https://github.com/raywo/MMM-PublicTransportLeipzig",
"author": "raywo",
"desc": "Display departures for public transport in Leipzig. The used data are quite unreliable. Please use [MMM-PublicTransportHafas](https://github.com/raywo/MMM-PublicTransportHafas) instead. It comes preconfigured for Leipzig."
},
{
"longname": "MMM-PublicTransportHafas",
"id": "raywo/MMM-PublicTransportHafas",
"url": "https://github.com/raywo/MMM-PublicTransportHafas",
"author": "raywo",
"desc": "Display departures for public transport in Germany using hafas-client data (Deutsche Bahn). Includes most local networks with buses, trams etc., however will have less details than other modules that use local network APIs directly.<br>The module is intended to replace MMM-PublicTransportLeipzig since the Leipzig module relies on very unstable data from LVB (Leipziger Verkehrsbetriebe). The displayed departures use the colours used in Leipzig but can easily adapted to other colour schemes."
},
{
"longname": "MMM-PublicTransportDB",
"id": "olexs/MMM-PublicTransportDB",
"url": "https://github.com/olexs/MMM-PublicTransportDB",
"author": "olexs",
"desc": "Display departures for public transport in Germany using db-hafas data (Deutsche Bahn). Includes most local networks with buses, trams etc., however will less details than other modules that use local network APIs directly (e.g. RMV has no real-time delay data, only scheduled departures). Note: Does not work since Sep 2017, due to changed structure of the API Response. Partial possible fixes in PRs."
},
{
"longname": "MMM-PublicTransportVVO",
"id": "ChristianGeie/MMM-PublicTransportVVO",
"url": "https://github.com/ChristianGeie/MMM-PublicTransportVVO",
"author": "ChristianGeie",
"desc": "Display live departures from public passenger transport service of the 'Verkehrsverbund Oberelbe' (VVO)."
},
{
"longname": "MMM-ResRobot",
"id": "Alvinger/MMM-ResRobot",
"url": "https://github.com/Alvinger/MMM-ResRobot",
"author": "Alvinger",
"desc": "Public transport information for Sweden."
},
{
"longname": "MMM-RNV",
"id": "yawnsde/MMM-RNV",
"url": "https://github.com/yawnsde/MMM-RNV",
"author": "yawns",
"desc": "Monitor a given station in the RNV traffic network"
},
{
"longname": "MMM-Ruter",
"id": "CatoAntonsen/MMM-Ruter",
"url": "https://github.com/CatoAntonsen/MMM-Ruter",
"author": "CatoAntonsen",
"desc": "Display public transport information for Oslo and Akershus in Norway"
},
{
"longname": "MMM-Skyss",
"id": "PabloDons/MMM-Skyss",
"url": "https://github.com/PabloDons/MMM-Skyss",
"author": "PabloDons",
"desc": "Based on MMM-Ruter, but for the municipality of Hordaland in Norway"
},
{
"longname": "MMM-Entur-tavle",
"id": "Arve/MMM-Entur-tavle",
"url": "https://github.com/Arve/MMM-Entur-tavle",
"author": "Arve",
"desc": "Display public transport information/departure boards for any public transport in Norway"
},
{
"longname": "MMM-SL-PublicTransport",
"id": "boghammar/MMM-SL-PublicTransport",
"url": "https://github.com/boghammar/MMM-SL-PublicTransport",
"author": "boghammar",
"desc": "Display public transport in Stockholm/**Sweden**."
},
{
"longname": "MMM-Vasttrafik-PublicTransport",
"id": "bureus/MMM-Vasttrafik-PublicTransport",
"url": "https://github.com/bureus/MMM-Vasttrafik-PublicTransport",
"author": "bureus",
"desc": "Display public transport operated by Västtrafik for western part of Sweden, including Gothenburg."
},
{
"longname": "MMM-socialbicycles",
"id": "0lek/MMM-socialbicycles",
"url": "https://github.com/0lek/MMM-socialbicycles",
"author": "0lek",
"desc": "Station monitor for bicycle networks based on the Socialbicycles API/Infrastructure, e.g. Wavelo in Kraków, Poland."
},
{
"longname": "MMM-stib",
"id": "danito/MMM-stib",
"url": "https://github.com/danito/MMM-stib",
"author": "danito",
"desc": "Display the next transports for any given STIB (Brussel/Belgium) station."
},
{
"longname": "MMM-SwissStationboard",
"id": "vanhoekd/MMM-SwissStationboard",
"url": "https://github.com/vanhoekd/MMM-SwissStationboard",
"author": "vanhoekd",
"desc": "Display the next departures in every direction for your favorite trainstation in Switzerland with delay information"
},
{
"longname": "MMM-SwissCommute",
"id": "nixnuex/MMM-SwissCommute",
"url": "https://github.com/nixnuex/MMM-SwissCommute",
"author": "nixnuex",
"desc": "Display the next departures for your favorite (train) connection in Switzerland (SBB)"
},
{
"longname": "MMM-swisstransport",
"id": "Bangee44/MMM-swisstransport",
"url": "https://github.com/Bangee44/MMM-swisstransport",
"author": "Bangee44",
"desc": "Display train departures from your favourit trainstation."
},
{
"longname": "MMM-Tesla",
"id": "janhenrik/MMM-Tesla",
"url": "https://github.com/janhenrik/MMM-Tesla",
"author": "janhenrik",
"desc": "Displays some of your Tesla's data on your Mirror (early prototype)"
},
{
"longname": "MMM-Traffic",
"id": "SamLewis0602/MMM-Traffic",
"url": "https://github.com/SamLewis0602/MMM-Traffic",
"author": "SamLewis0602",
"desc": "Display commute travel time with current traffic conditions factored in. Can be used for driving, biking, walking, and public transit."
},
{
"longname": "MMM-TrainConnections",
"id": "Bangee44/MMM-TrainConnections",
"url": "https://github.com/Bangee44/MMM-TrainConnections",
"author": "Bangee44",
"desc": "Display trains from your favourit departure station to any destination in Europe."
},
{
"longname": "MMM-Trains-Trafikverket",
"id": "per-garden/MMM-Trains-Trafikverket",
"url": "https://github.com/per-garden/MMM-Trains-Trafikverket",
"author": "per-garden",
"desc": "Additional Module for MagicMirror², to display train departure times for railway stations within Sweden, as supplied by the Swedish Transport Administration (Trafikverket)."
},
{
"longname": "MMM-Tube-Status",
"id": "nigel-daniels/MMM-Tube-Status",
"url": "https://github.com/nigel-daniels/MMM-Tube-Status",
"author": "nigel-daniels",
"desc": "Simple at-a-glance display of the London Underground system status."
},
{
"longname": "MMM-UKLiveBusStopInfo",
"id": "nwootton/MMM-UKLiveBusStopInfo",
"url": "https://github.com/nwootton/MMM-UKLiveBusStopInfo",
"author": "nwootton",
"desc": "This module displays LIVE UK information about a specific bus stop and the routes that serve it."
},
{
"longname": "MMM-UKNationalRail",
"id": "nwootton/MMM-UKNationalRail",
"url": "https://github.com/nwootton/MMM-UKNationalRail",
"author": "nwootton",
"desc": "This module displays LIVE UK National Rail train arrivals & departures from a specified station."
},
{
"longname": "MMM-Vrr",
"id": "Klizzy/MMM-Vrr",
"url": "https://github.com/Klizzy/MMM-Vrr",
"author": "Klizzy",
"desc": "Easy configuration module to display bus and train arrivals/departures with different display types for Germany (VRR and more EFA)."
},
{
"longname": "MMM-VTA-Live",
"id": "nigel-daniels/MMM-VTA-Live",
"url": "https://github.com/nigel-daniels/MMM-VTA-Live",
"author": "nigel-daniels",
"desc": "Lets you see when VTA light rail trains are about to arrive at your selected stop."
},
{
"longname": "MMM-vvsDeparture",
"id": "niklaskappler/MMM-vvsDeparture",
"url": "https://github.com/niklaskappler/MMM-vvsDeparture",
"author": "niklaskappler",
"desc": "Display departures for public transport in Stuttgart (Covers VVS Area)."
},
{
"longname": "MMM-AC-aseag",
"id": "neandertaler19/MMM-AC-aseag",
"url": "https://github.com/neandertaler19/MMM-AC-aseag",
"author": "neandertaler19",
"desc": "Displays departures for ASEAG busses in Aachen, Germany."
},
{
"longname": "MMM-Luxembourg-Public-Transport",
"id": "MarinescuEvghenii/MMM-Luxembourg-Public-Transport",
"url": "https://github.com/MarinescuEvghenii/MMM-Luxembourg-Public-Transport",
"author": "MarinescuEvghenii",
"desc": "Luxembourg public transport departures in real time."
},
{
"longname": "MMM-RMV",
"id": "Com-Lum/MMM-RMV",
"url": "https://github.com/Com-Lum/MMM-RMV",
"author": "Com-Lum",
"desc": "Rhein-Main local transport system (RMV) - Departure Monitor"
},
{
"longname": "MMM-TFL",
"id": "SilverBirchh/MMM-TFL",
"url": "https://github.com/SilverBirchh/MMM-TFL",
"author": "SilverBirchh",
"desc": "Transport For London tube status board"
},
{
"longname": "MMM-uber",
"id": "kyle-kelly/MMM-uber",
"url": "https://github.com/kyle-kelly/MMM-uber",
"author": "kyle-kelly",
"desc": "Estimated arrival times for UBER"
},
{
"longname": "MMM-lyft",
"id": "kyle-kelly/MMM-lyft",
"url": "https://github.com/kyle-kelly/MMM-lyft",
"author": "kyle-kelly",
"desc": "Estimated arrival times for lyft"
},
{
"longname": "JIR-EMT",
"id": "jirsis/emt",
"url": "https://github.com/jirsis/emt",
"author": "jirsis",
"desc": "Estimated arrival time and distance Madrid Buses"
},
{
"longname": "MMM-WienerLinien",
"id": "fewieden/MMM-WienerLinien",
"url": "https://github.com/fewieden/MMM-WienerLinien",
"author": "fewieden",
"desc": "Display Public Transport timetable of Vienna/Austria."
},
{
"longname": "MMM-SNCF",
"id": "jvanoost/MMM-SNCF",
"url": "https://github.com/jvanoost/MMM-SNCF",
"author": "jvanoost",
"desc": "Display upcoming trains between 2 SNCF stations (France)"
},
{
"longname": "MMM-Bysykkel",
"id": "JonasTriki/MMM-Bysykkel",
"url": "https://github.com/JonasTriki/MMM-Bysykkel",
"author": "JonasTriki",
"desc": "Display the availability of the city bikes around in Norway from A to B."
},
{
"longname": "MMM-Futar",
"id": "balassy/MMM-Futar",
"url": "https://github.com/balassy/MMM-Futar",
"author": "balassy",
"desc": "Displays Budapest public transport information directly from the Futár webservice."
},
{
"longname": "MMM-Bubi",
"id": "balassy/MMM-Bubi",
"url": "https://github.com/balassy/MMM-Bubi",
"author": "balassy",
"desc": "Displays the number of available bikes on the selected stations of the Budapest public bike system (aka MOL Bubi)."
},
{
"longname": "MMM-DisneyWaitTimes",
"id": "gberg927/MMM-DisneyWaitTimes",
"url": "https://github.com/gberg927/MMM-DisneyWaitTimes",
"author": "gberg927",
"desc": "Displays ride wait times at the Disney World Parks."
},
{
"longname": "MMM-Alexa",
"id": "sakirtemel/MMM-alexa",
"url": "https://github.com/sakirtemel/MMM-alexa",
"author": "sakirtemel",
"desc": "Amazon Alexa integration with using Javascript only."
},
{
"longname": "MMM-AlexaOnOff",
"id": "shbatm/MMM-AlexaOnOff",
"url": "https://github.com/shbatm/MMM-AlexaOnOff",
"author": "shbatm",
"desc": "Simple Mirror Control from External Home Assistant (Alexa/Google Home/HASS.io)"
},
{
"longname": "MMM-AssistantMk2",
"id": "eouia/MMM-AssistantMk2",
"url": "https://github.com/eouia/MMM-AssistantMk2",
"author": "eouia",
"desc": "New Google Assistant embeding with screen output."
},
{
"longname": "MMM-awesome-alexa",
"id": "dolanmiu/MMM-awesome-alexa",
"url": "https://github.com/dolanmiu/MMM-awesome-alexa",
"author": "dolanmiu",
"desc": "Easy, hands free Amazon Alexa integration; activated, simply by saying \"Alexa\"."
},
{
"longname": "MMM-Hello-Mirror",
"id": "Matzefication/MMM-Hello-Mirror",
"url": "https://github.com/Matzefication/MMM-Hello-Mirror",
"author": "Matzefication",
"desc": "Voice-Control for the MagicMirror² based on Google Speech Recognizer (annyang). Send a notification to all other modules on voice detection."
},
{
"longname": "MMM-Hotword",
"id": "eouia/MMM-Hotword",
"url": "https://github.com/eouia/MMM-Hotword",
"author": "eouia",
"desc": "Hotword detector with snowboy."
},
{
"longname": "MMM-MirrorMirrorOnTheWall",
"id": "joanaz/MMM-MirrorMirrorOnTheWall",
"url": "https://github.com/joanaz/MMM-MirrorMirrorOnTheWall",
"author": "joanaz",
"desc": "Alexa voice control to show/hide modules, search for images or Youtube video, and display them with the search term on the mirror."
},
{
"longname": "MMM-TTS",
"id": "fewieden/MMM-TTS",
"url": "https://github.com/fewieden/MMM-TTS",
"author": "fewieden",
"desc": "Offline Text-To-Speech based on festival."
},
{
"longname": "MMM-Voice-Control",
"id": "dr4ke616/MMM-Voice-Control",
"url": "https://github.com/dr4ke616/MMM-Voice-Control",
"author": "dr4ke616",
"desc": "Voice control based on annyang."
},
{
"longname": "MMM-Voice-Commands",
"id": "Veldrovive/MMM-Voice-Commands",
"url": "https://github.com/Veldrovive/MMM-Voice-Commands",
"author": "Veldrovive",
"desc": "Highly configurable voice control based on annyang."
},
{
"longname": "MMM-voice",
"id": "fewieden/MMM-voice",
"url": "https://github.com/fewieden/MMM-voice",
"author": "fewieden",
"desc": "Offline Voice Recognition Module for MagicMirror², with ability to control other modules, based on pocketsphinx."
},
{
"longname": "magic-mirror-voice",
"id": "whyjustin/magic-mirror-voice",
"url": "https://github.com/whyjustin/magic-mirror-voice",
"author": "whyjustin",
"desc": "Voice control based on based on Sphinx and Alexa."
},
{
"longname": "voicecontrol",
"id": "alexyak/voicecontrol",
"url": "https://github.com/alexyak/voicecontrol",
"author": "alexyak",
"desc": "Voice control based on snowboy."
},
{
"longname": "MMM-kalliope",
"id": "kalliope-project/MMM-kalliope",
"url": "https://github.com/kalliope-project/MMM-kalliope",
"author": "sispheor",
"desc": "Control MM from Kalliope assistant"
},
{
"longname": "MMM-NOAA3",
"id": "cowboysdude/MMM-NOAA3",
"url": "https://github.com/cowboysdude/MMM-NOAA3",
"author": "cowboysdude",
"desc": "Display of weather with a variety of config options and providers. Shows current plus 3 day forecast"
},
{
"longname": "MMM-3Day-Forecast",
"id": "nigel-daniels/MMM-3Day-Forecast",
"url": "https://github.com/nigel-daniels/MMM-3Day-Forecast",
"author": "nigel-daniels",
"desc": "Simple display of today, tomorrow & next-day, designed to work with MMM-Weather-Now. Now uses WeatherBit API as Wunderground are cancelling the free service :( Please update and update config!"
},
{
"longname": "MMM-AareGuru",
"id": "buge/MMM-AareGuru",
"url": "https://github.com/buge/MMM-AareGuru",
"author": "buge",
"desc": "Displays the temperature from [aare.guru](https://aare.guru/) for the river Aare in Switzerland (in Brienz, Interlaken, Thun, Bern, Hagneck, Biel or Brugg)."
},
{
"longname": "MMM-AirNow",
"id": "nigel-daniels/MMM-AirNow",
"url": "https://github.com/nigel-daniels/MMM-AirNow",
"author": "nigel-daniels",
"desc": "Simple display of air quality based on the US AirNow API."
},
{
"longname": "MMM-AirQuality",
"id": "CFenner/MMM-AirQuality",
"url": "https://github.com/CFenner/MMM-AirQuality",
"author": "CFenner",