<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[Module to get indoor temperature from smartsensor]]></title><description><![CDATA[<p dir="auto">Hello everyone,</p>
<p dir="auto">i’ve been playing around with the MagicMirror for few weeks, and learning how to use prog on the rpi at the same time. Quite new for me but passionating.</p>
<p dir="auto">I’m using a sensibo (<a href="https://www.sensibo.com/" target="_blank" rel="noopener noreferrer nofollow ugc">https://www.sensibo.com/</a>) to control my aircon unit. The device is basically a smart IR remote with a temperature and humidity sensor, all connected to wifi, and with an open API !<br />
Basically, I’d like to be able to pull “temperature” and “humidity” measurement from the sensor and display it on the MagicMirror.</p>
<p dir="auto">They have published the script, with the measurements function, but I am clueless on how to adapt it into a “currentweather” like module. <a href="https://github.com/Sensibo/sensibo-python-sdk" target="_blank" rel="noopener noreferrer nofollow ugc">https://github.com/Sensibo/sensibo-python-sdk</a></p>
<p dir="auto">Any pointers would be greatly appreciated !</p>
<p dir="auto">Thanks a lot in advance.</p>
<p dir="auto">Kind Regards<br />
Pierre</p>
]]></description><link>https://forum.magicmirror.builders/topic/13214/module-to-get-indoor-temperature-from-smartsensor</link><generator>RSS for Node</generator><lastBuildDate>Sat, 11 Jul 2026 05:15:01 GMT</lastBuildDate><atom:link href="https://forum.magicmirror.builders/topic/13214.rss" rel="self" type="application/rss+xml"/><pubDate>Mon, 06 Jul 2020 13:28:08 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Module to get indoor temperature from smartsensor on Wed, 06 Nov 2024 11:52:00 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/zefx" aria-label="Profile: ZeFX">@<bdi>ZeFX</bdi></a>  I created this if you want to give it a try before I post it <a href="https://github.com/wlans/MMM-Sensibo" target="_blank" rel="noopener noreferrer nofollow ugc">https://github.com/wlans/MMM-Sensibo</a></p>
]]></description><link>https://forum.magicmirror.builders/post/121069</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/121069</guid><dc:creator><![CDATA[mmmallday]]></dc:creator><pubDate>Wed, 06 Nov 2024 11:52:00 GMT</pubDate></item><item><title><![CDATA[Reply to Module to get indoor temperature from smartsensor on Wed, 08 Jul 2020 20:06:28 GMT]]></title><description><![CDATA[<p dir="auto">update on this !</p>
<p dir="auto">After more research, I’m getting closer to a working solution !<br />
Basically, I can get temperature and humidity data by sending the following url:<br />
<a href="https://home.sensibo.com/api/v2/pods/%7BpodID%7D/measurements?apiKey=%7BapikkeyXXX%7D" target="_blank" rel="noopener noreferrer nofollow ugc">https://home.sensibo.com/api/v2/pods/{podID}/measurements?apiKey={apikkeyXXX}</a><br />
In which I can input my API key and my device/pod ID.<br />
It will reply with a JSON giving this :</p>
<pre><code>	
Response body
Download
{
  "status": "success",
  "result": [
    {
      "time": {
        "secondsAgo": 17,
        "time": "2020-07-08T19:53:04.450414Z"
      },
      "temperature": 27.3,
      "humidity": 49.5
    }
  ]
}
</code></pre>
<p dir="auto">After hours looking on how to get and display those two values, i’ve opted to use this module <a href="https://github.com/amcolash/MMM-json-feed" target="_blank" rel="noopener noreferrer nofollow ugc">MMM-json-feed</a>.</p>
<p dir="auto">And after some playing around, it finally shows like this:<br />
<img src="/assets/uploads/files/1594238452068-a8428806-ff26-4c7d-8f2a-fbc8e77a5af1-image.png" alt="a8428806-ff26-4c7d-8f2a-fbc8e77a5af1-image.png" class=" img-fluid img-markdown" /></p>
<p dir="auto">Now, I need to find a way to :<br />
+Round up values<br />
+Add Celsius and % for each value<br />
+Replace “Temperature” and “Humidity” by a nice FontAwesome icon</p>
<p dir="auto">If anyone has any pointers for one of the above, it will be appreciated !</p>
<p dir="auto">Cheers<br />
Pierre</p>
]]></description><link>https://forum.magicmirror.builders/post/78236</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/78236</guid><dc:creator><![CDATA[ZeFX]]></dc:creator><pubDate>Wed, 08 Jul 2020 20:06:28 GMT</pubDate></item></channel></rss>