<?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[[MMM-LocalTemperature] - No display]]></title><description><![CDATA[<p dir="auto">Hello,<br />
I can not display the temperature on the screen.<br />
Configuration : Raspberry Pi 3, Raspbian stretch lite, MagicMirror 2 (basic modules work).<br />
I followed the installation procedure:</p>
<pre><code>cd ~/MagicMirror/modules
git clone https://github.com/glitch452/MMM-LocalTemperature.git
sudo apt-get update &amp;&amp; sudo apt-get upgrade &amp;&amp; sudo apt-get install build-essential wiringpi
cd MMM-LocalTemperature &amp;&amp; chmod +x DHT
</code></pre>
<p dir="auto">Everything went well, no error message<br />
I plugged into the raspberry a DHT11 as well as a DHT22 (which work well on arduino), power 5v, grnd and output on the pin 22</p>
<p dir="auto">I added in the config.js:</p>
<pre><code>{
            module: "MMM-LocalTemperature",
            position: "top_center", // Only add a position if you want this module to display the data
            header: "Room Temperature",
            config: {
                sensorPin: 22, // For GPIO 22
                units: "metric",
		temperatureText: "Température: {temperature}°C",
            }
        },
</code></pre>
<p dir="auto">On the screen, only the header is displayed.<br />
When I add in the config showTemperature: true, I have in addition a message “Loading…” without more.<br />
Someone would have the kindness to give me some advice to be able to display the temperature.<br />
Thank you</p>
]]></description><link>https://forum.magicmirror.builders/topic/11219/mmm-localtemperature-no-display</link><generator>RSS for Node</generator><lastBuildDate>Wed, 20 May 2026 22:12:30 GMT</lastBuildDate><atom:link href="https://forum.magicmirror.builders/topic/11219.rss" rel="self" type="application/rss+xml"/><pubDate>Wed, 25 Sep 2019 12:33:57 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to [MMM-LocalTemperature] - No display on Mon, 20 Sep 2021 19:21:16 GMT]]></title><description><![CDATA[<p dir="auto">I am leaving this comment here for those who have built a magic mirror using raspberry pi zero hoping that it will help someone.<br />
After trying to get the sensor (DHT22) to work with various modules I confirm that I managed to make it run with this module. The only difference was that in step 3 of the instructions I installed wiringPi library as described in here: <a href="http://wiringpi.com/download-and-install/" target="_blank" rel="noopener noreferrer nofollow ugc">http://wiringpi.com/download-and-install/</a> , which is simple a <em>sudo apt-get install wiringpi</em> command in the main directory of the project ( <em>/MagicMirror</em> ). Other than that, just make sure to enter the correct GPIO pin in the <em>config.js</em> file and you are ready to get some measurements.<br />
Two words only… Thank you!</p>
]]></description><link>https://forum.magicmirror.builders/post/94700</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/94700</guid><dc:creator><![CDATA[mariosgouros]]></dc:creator><pubDate>Mon, 20 Sep 2021 19:21:16 GMT</pubDate></item><item><title><![CDATA[Reply to [MMM-LocalTemperature] - No display on Sun, 08 Nov 2020 08:19:24 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/rikko" aria-label="Profile: Rikko">@<bdi>Rikko</bdi></a> I’ll answer myself here. :) It might help someone else.</p>
<p dir="auto">The problem was the version of Wiring Pi, which is a dependency to this module.<br />
If you follow the instructions on this module’s page, you get version 2.50 of Wiring Pi. But that does not work with Raspberry Pi 4. You need 2.52.</p>
<p dir="auto">Here you can find details:<br />
<a href="http://wiringpi.com/wiringpi-updated-to-2-52-for-the-raspberry-pi-4b/" target="_blank" rel="noopener noreferrer nofollow ugc">http://wiringpi.com/wiringpi-updated-to-2-52-for-the-raspberry-pi-4b/</a></p>
<p dir="auto">My DHT22 now works well with MMM-LocalTemperature. 👍</p>
]]></description><link>https://forum.magicmirror.builders/post/84403</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/84403</guid><dc:creator><![CDATA[Rikko]]></dc:creator><pubDate>Sun, 08 Nov 2020 08:19:24 GMT</pubDate></item><item><title><![CDATA[Reply to [MMM-LocalTemperature] - No display on Sat, 07 Nov 2020 17:21:03 GMT]]></title><description><![CDATA[<p dir="auto">Picking up on an old thread.</p>
<p dir="auto">I can’t get MMM-LocalTemperature to work on my Raspberry Pi4.</p>
<p dir="auto">I have tried “all” variants I can think of in relation to pins (BOARD, WPI, Default, swithcing pins etc.).<br />
But all I get is the “Loading” text.</p>
<p dir="auto">Any ideas how I can troubleshoot? Can the C-file be run in some kind of verbose mode? Is these some kind of GPIO scan/test tool?</p>
<p dir="auto">I’m using the DHT22 module, with pull-up resistor built in.<br />
It can be faulty, I suppose. Can I verify its function somehow? I do not have logic analyzer or other such tools. Only have multimeter.</p>
<p dir="auto">I’m a complete GPIO N00B/Rookie.</p>
]]></description><link>https://forum.magicmirror.builders/post/84387</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/84387</guid><dc:creator><![CDATA[Rikko]]></dc:creator><pubDate>Sat, 07 Nov 2020 17:21:03 GMT</pubDate></item><item><title><![CDATA[Reply to [MMM-LocalTemperature] - No display on Wed, 25 Sep 2019 14:43:35 GMT]]></title><description><![CDATA[<p dir="auto">Thank you very much for the info … now it works !!!<br />
For info from the link <a href="https://pinout.xyz/" target="_blank" rel="noopener noreferrer nofollow ugc">https://pinout.xyz/</a> I selected BCM22 (pin 15) and config.js I put</p>
<pre><code>sensorPin: 15,
pinScheme: "BOARD",
</code></pre>
<p dir="auto">The problem is that the temperature is random. It shows 23 ° C then 17 ° C then 23°C while with an arduino next door it displays 23 ° C … surely a problem of DHT11 …<br />
But the problem is well settled, thank you again</p>
]]></description><link>https://forum.magicmirror.builders/post/61674</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/61674</guid><dc:creator><![CDATA[Thierry17]]></dc:creator><pubDate>Wed, 25 Sep 2019 14:43:35 GMT</pubDate></item><item><title><![CDATA[Reply to [MMM-LocalTemperature] - No display on Wed, 25 Sep 2019 13:34:11 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/thierry17" aria-label="Profile: Thierry17">@<bdi>Thierry17</bdi></a> said in <a href="/post/61662">[MMM-LocalTemperature] - No display</a>:</p>
<blockquote>
<p dir="auto">Unable to read sensor data after 3 attemps</p>
</blockquote>
<p dir="auto">not a language problem…</p>
<p dir="auto">can’t read the sensor…</p>
<p dir="auto">maybe u need to set the config pinScheme?  (:“WPI”) ??<br />
maybe a wiring problem?<br />
<a href="https://pinout.xyz/" target="_blank" rel="noopener noreferrer nofollow ugc">https://pinout.xyz/</a><br />
hover over the bcm number (22) to get the wiringPi number (3)</p>
]]></description><link>https://forum.magicmirror.builders/post/61663</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/61663</guid><dc:creator><![CDATA[sdetweil]]></dc:creator><pubDate>Wed, 25 Sep 2019 13:34:11 GMT</pubDate></item><item><title><![CDATA[Reply to [MMM-LocalTemperature] - No display on Wed, 25 Sep 2019 13:24:34 GMT]]></title><description><![CDATA[<p dir="auto">Ouups I forgot "the error message:</p>
<pre><code>MMM-LocalTemperature: Sensor read Error, trying again in 10 seconds.
MMM-LocalTemperature.js:445
{"Killed":false,"code":1,"signal":null,"cmd":"sudo modules/MMM-LocalTemperature/DHT 3 -m j -a 3","stderr":Unable to read sensor data after 3 attemps.\n}
</code></pre>
]]></description><link>https://forum.magicmirror.builders/post/61662</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/61662</guid><dc:creator><![CDATA[Thierry17]]></dc:creator><pubDate>Wed, 25 Sep 2019 13:24:34 GMT</pubDate></item><item><title><![CDATA[Reply to [MMM-LocalTemperature] - No display on Wed, 25 Sep 2019 13:16:59 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/thierry17" aria-label="Profile: Thierry17">@<bdi>Thierry17</bdi></a> can u show the error message(s)?  we can help</p>
]]></description><link>https://forum.magicmirror.builders/post/61661</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/61661</guid><dc:creator><![CDATA[sdetweil]]></dc:creator><pubDate>Wed, 25 Sep 2019 13:16:59 GMT</pubDate></item><item><title><![CDATA[Reply to [MMM-LocalTemperature] - No display on Wed, 25 Sep 2019 13:06:07 GMT]]></title><description><![CDATA[<p dir="auto">Thank you for your return.<br />
I followed your advice and here is the error message that appears.<br />
Unfortunately my knowledge is too limited to know how to correct the problem.<br />
I configured MagicMirror en fr and online 424 of the MMM-LocalTemperature.js module it is indicated in: “translations / en.json”<br />
By changing en instead of in that fear to solve the problem?<br />
thank you in advance</p>
]]></description><link>https://forum.magicmirror.builders/post/61660</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/61660</guid><dc:creator><![CDATA[Thierry17]]></dc:creator><pubDate>Wed, 25 Sep 2019 13:06:07 GMT</pubDate></item><item><title><![CDATA[Reply to [MMM-LocalTemperature] - No display on Wed, 25 Sep 2019 12:41:47 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/thierry17" aria-label="Profile: Thierry17">@<bdi>Thierry17</bdi></a> the loading message is the initial hard coded message from the module, and is replaced  when data is loaded…</p>
<p dir="auto">so, this means data was not loaded</p>
<p dir="auto">open the developers window.<br />
using keyboard ctrl-shift-i</p>
<p dir="auto">then select the tab at the top labeled ‘console’<br />
and scroll up to fine any errors, usually in red text.</p>
]]></description><link>https://forum.magicmirror.builders/post/61658</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/61658</guid><dc:creator><![CDATA[sdetweil]]></dc:creator><pubDate>Wed, 25 Sep 2019 12:41:47 GMT</pubDate></item></channel></rss>