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

    Topics

    • PimagicalP

      A location based night sky background for MagicMirror

      Watching Ignoring Scheduled Pinned Locked Moved Unsolved Requests skyview night sky star module
      1
      1 Votes
      1 Posts
      2k Views
      PimagicalP
      A location based night sky background for MagicMirror Using the SkyView APP(a location based augmented view of the night sky with stars and satellites) i was wondering how this could be made possible for MagicMirror. The idea is to make use of the MagicMirror’s black background with a layer of stars that are changing during the day depending on your location. The old way (time based): [image: day_and_night_wrist_watch.jpg] The new way (location based): [image: example2small.png] For example a nice looking Ref6. A few more examples of MagicMirror with use of online sky maps*: Example1 using the map of Ref1. Example2 using the map of Ref4. & Ref5. Example3 using the map of Ref2. Example4 using the map of Ref6. I’m sharing this to make this idea available using a module. *References used in examples: Location based online sky view maps Ref1. http://neave.com/planetarium/ Ref2. http://theskylive.com/planetarium#ra|8.113703391538692|dec|-14.419127710596998|fov|50 Ref3. http://www.astroviewer.com/night-sky-code.php?lon=4.89&lat=52.37&city=Amsterdam&tz=CET Ref4. SkyView Android https://play.google.com/store/apps/details?id=com.t11.skyviewfree&hl=nl Ref5. SkyView iOS https://itunes.apple.com/nl/app/skyview-free-explore-universe/id413936865?mt=8 360 sky view maps (not location based) Ref6. http://media.skysurvey.org/interactive360/index.html Ref7. https://www.google.com/sky/
    • PimagicalP

      How to get Domotica info to MagicMirror

      Watching Ignoring Scheduled Pinned Locked Moved Requests
      1
      0 Votes
      1 Posts
      1k Views
      PimagicalP
      I want to know wich MagicMirror module can be used to get temperature information from my Pimatic domotica system to the MagicMirror. (a few Pimatic users have MagicMirrors) For example this link can be used: http://demo:demo@demo.pimatic.org/api/variables/variable-set.temperature (buth will output all values) This script for example will pick the one value needed (Temperature: 14) <?php $curl = curl_init(); curl_setopt ($curl, CURLOPT_URL, "http://demo:demo@demo.pimatic.org/api/variables/variable-set.temperature"); curl_setopt ($curl, CURLOPT_RETURNTRANSFER, 1); $result = curl_exec ($curl);// curl to a variable curl_close ($curl); $result = json_decode($result, true);// decode to associative array $result = $result['variable']['value'];//pick desired value print "Temperature: ".$result; ?>
    • 1 / 1