MagicMirror Forum
    • Recent
    • Tags
    • Unsolved
    • Solved
    • MagicMirror² Repository
    • Documentation
    • 3rd-Party-Modules
    • Donate
    • Discord
    • Register
    • Login
    1. Home
    2. strawberry 3.141
    3. Topics
    A New Chapter for MagicMirror: The Community Takes the Lead
    Read the statement by Michael Teeuw here.
    Offline
    • Profile
    • Following 3
    • Followers 35
    • Topics 30
    • Posts 1,700
    • Groups 2

    Topics

    • strawberry 3.141S

      MMM-NHL

      Watching Ignoring Scheduled Pinned Locked Moved Sport
      8
      1 Votes
      8 Posts
      2k Views
      strawberry 3.141S
      v2.4.0 Thanks to @parnic @dannoh for their contributions. Fixed Updated module to work with the new NHL API. Link to module https://github.com/fewieden/MMM-NHL
    • strawberry 3.141S

      Default weather module refactoring

      Watching Ignoring Scheduled Pinned Locked Moved Upcoming Features
      5
      5 Votes
      5 Posts
      4k Views
      A
      Check module directory.
    • strawberry 3.141S

      MagicMirror² Hackathon 2018

      Watching Ignoring Scheduled Pinned Locked Moved Development
      11
      3 Votes
      11 Posts
      6k Views
      strawberry 3.141S
      Thanks to @justjim1220 for contributing in two issues and thanks to @idoodler for reviewing and testing an issue 48h Hackathon recap Metric Total Ø per hour Issues handled 12 0.25 Projects changed 7 0.15 Lines added +1.587 +33 Lines removed -1,487 -31 Merge requests that are still open for review and testing: https://github.com/fewieden/MMM-AlarmClock/pull/22 https://github.com/fewieden/MMM-voice/pull/38 https://github.com/fewieden/MMM-Fuel/pull/32
    • strawberry 3.141S

      MMM-Modal

      Watching Ignoring Scheduled Pinned Locked Moved System modal dialog touch control voice control
      14
      5 Votes
      14 Posts
      5k Views
      strawberry 3.141S
      With MMM-NFL another module has now integrated the modals. [image: statistic-modal.png] See the full list at https://github.com/fewieden/MMM-Modal/wiki/Depending-Modules
    • strawberry 3.141S

      New Raspberry Pi 3+

      Watching Ignoring Scheduled Pinned Locked Moved Hardware
      5
      2 Votes
      5 Posts
      4k Views
      E
      Yeah, although I love the RPi support community, for example the ASUS Tinker Board S look very similar in both formfactor, price and spec’s but cheaper. The Asus TB S has: 2 GB RAM 16 GB on-board SD GB Ethernet 1.8 GHz CPU 4K HD (AFAICR)
    • strawberry 3.141S

      Looking for Austrian Testers

      Watching Ignoring Scheduled Pinned Locked Moved Development
      16
      1 Votes
      16 Posts
      8k Views
      schlachtkreuzer6S
      @strawberry-3.141 works great!
    • strawberry 3.141S

      New Raspberry Pi Zero W

      Watching Ignoring Scheduled Pinned Locked Moved Hardware
      13
      1 Votes
      13 Posts
      11k Views
      M
      I have bought Rasberry pi from http://www.w11stop.com/manufacturer-raspberrypi and it has USB (and ethernet) which is not working… i am confuse i can’t understand that is my software is too old or there is a SD card issue NOOBS issue… i have stucked in this… please can anyone can help me out from this…!!!
    • strawberry 3.141S

      Defining a module configuration schema standard

      Watching Ignoring Scheduled Pinned Locked Moved Development
      9
      2 Votes
      9 Posts
      5k Views
      R
      I just publish a first release functional of https://github.com/roramirez/MagicMirror-Module-Template If there suggest about include JSON Schema of something else, come on!, let me know
    • strawberry 3.141S

      Mobile app (bachelor thesis)

      Watching Ignoring Scheduled Pinned Locked Moved Development
      116
      4 Votes
      116 Posts
      171k Views
      A
      @strawberry-3-141 said in Mobile app (bachelor thesis): I sent the app to all that have sent me their emails in a private message. Here are also two screenshots that I extracted from my thesis. [image: 1535792916479-konfiguration.png] [image: 1535792936316-seitenmenue.png] Android app is still available?
    • strawberry 3.141S

      Dev Gallery

      Watching Ignoring Scheduled Pinned Locked Moved General Discussion
      5
      4 Votes
      5 Posts
      3k Views
      strawberry 3.141S
      [image: XdqsPYN.jpg]
    • strawberry 3.141S

      MMM-AlarmClock

      Watching Ignoring Scheduled Pinned Locked Moved Utilities alarm clock
      29
      1 Votes
      29 Posts
      18k Views
      strawberry 3.141S
      2.0.2 Fixed Timing of alert click handler registration Link to module https://github.com/fewieden/MMM-AlarmClock
    • strawberry 3.141S

      MMM-voice

      Watching Ignoring Scheduled Pinned Locked Moved Utilities voice control
      329
      7 Votes
      329 Posts
      931k Views
      S
      Just like MMM-Voice-Commands, annyang does not work when Magic Mirror is run using some browsers. In order to ensure that it works, use chrome or firefox if possible.
    • strawberry 3.141S

      Can't load script correctly

      Watching Ignoring Scheduled Pinned Locked Moved Development
      4
      0 Votes
      4 Posts
      3k Views
      N
      You can get leaflet to work in magic mirror quite easily. When you are creating your getDom function take the example from the tutorial as follows: var mymap = L.map('mapid').setView([51.505, -0.09], 13); L.tileLayer('https://api.tiles.mapbox.com/v4/{id}/{z}/{x}/{y}.png?access_token={accessToken}', { attribution: 'Map data © <a href="http://openstreetmap.org">OpenStreetMap</a> contributors, <a href="http://creativecommons.org/licenses/by-sa/2.0/">CC-BY-SA</a>, Imagery © <a href="http://mapbox.com">Mapbox</a>', maxZoom: 18, id: 'mapbox.streets', accessToken: Your Access token }).addTo(this.mymap); You will also need specify the size of the of the map window in your css file .Your_Module_Name #mapid { height: 500px; width: 500px; } There is a bit of a bug with some of the map not loading, this can be fixed by listening for the DOM_OBJECTS_CREATED notification like so: notificationReceived: function (notification, payload, sender) { if (notification === "DOM_OBJECTS_CREATED") { this.mymap.invalidateSize(); } }, This forces a redraw of the map.
    • strawberry 3.141S

      Module will not render

      Watching Ignoring Scheduled Pinned Locked Moved Development black screen
      2
      1 Votes
      2 Posts
      2k Views
      MichMichM
      If you wan’t to perform a updateDom a.s.a.p, you could use the DOM_OBJECTS_CREATED notification: notificationReceived: function(notification, payload, sender) { if (notification === 'DOM_OBJECTS_CREATED') { this.updateDom(); } } BUT … keep in mind, the updateDom() method will be called during the dom creation. So it doesn’t make any sense to do so …
    • strawberry 3.141S

      Add module reference to alerts

      Watching Ignoring Scheduled Pinned Locked Moved Feature Requests alert
      7
      1 Votes
      7 Posts
      5k Views
      paviroP
      Well feel free to change things in the alert module since it should be rewritten at some point anyway… :D
    • strawberry 3.141S

      MMM-WienerLinien

      Watching Ignoring Scheduled Pinned Locked Moved Transport wien vienna public transport öpnv wienerlinien
      16
      3 Votes
      16 Posts
      11k Views
      strawberry 3.141S
      Version 2.0.1 Fixed Sorting of departure times https://github.com/fewieden/MMM-WienerLinien/issues/16 https://github.com/fewieden/MMM-WienerLinien [card:fewieden/MMM-WienerLinien]
    • strawberry 3.141S

      MMM-ping

      Watching Ignoring Scheduled Pinned Locked Moved Utilities voice control modal ping online offline hosts network
      7
      0 Votes
      7 Posts
      5k Views
      W
      Could someone give an example how to activate / deactivate the monitor (hdmi) with dependency to the ping order? Like: if pinged device = onlinte then set hdmi := online if not hdmi := offline Thanks a lot
    • strawberry 3.141S

      MMM-ScottishPremierLeague

      Watching Ignoring Scheduled Pinned Locked Moved Sport soccer football scotland
      2
      0 Votes
      2 Posts
      2k Views
      M
      It works a treat! Thanks again.
    • strawberry 3.141S

      MMM-syslog

      Watching Ignoring Scheduled Pinned Locked Moved System logging home automation
      34
      4 Votes
      34 Posts
      31k Views
      strawberry 3.141S
      @nobita there is no sound integration
    • strawberry 3.141S

      MMM-Fuel

      Watching Ignoring Scheduled Pinned Locked Moved Transport fuel price gas station petrol station voice-control tankerkoenig spritpreisrechner nsw
      178
      2
      8 Votes
      178 Posts
      487k Views
      strawberry 3.141S
      2.5.0 Thanks to marcx28 for their contributions. Fixed Sorting by price Added Dependency: lodash Changed Allow custom header text Link to module https://github.com/fewieden/MMM-Fuel
    • 1 / 1