<?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[Get MMM-OpenWeatherMapForecast to show Fahrenheit instead of Celsius?]]></title><description><![CDATA[<p dir="auto">I know this must be a basic question, but I simply cannot find a way to change the reported temperature to Fahrenheit.</p>
]]></description><link>https://forum.magicmirror.builders/topic/19804/get-mmm-openweathermapforecast-to-show-fahrenheit-instead-of-celsius</link><generator>RSS for Node</generator><lastBuildDate>Sat, 12 Sep 2026 23:27:41 GMT</lastBuildDate><atom:link href="https://forum.magicmirror.builders/topic/19804.rss" rel="self" type="application/rss+xml"/><pubDate>Thu, 31 Jul 2025 13:28:27 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Get MMM-OpenWeatherMapForecast to show Fahrenheit instead of Celsius? on Tue, 05 Aug 2025 22:05:20 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/athlon" aria-label="Profile: Athlon">@<bdi>Athlon</bdi></a> awesome. i should have added to the above, that localhost ALWAYS means THIS  machine, no matter WHERE ITS USED. phone. laptop, desktop , server, nas, pi</p>
]]></description><link>https://forum.magicmirror.builders/post/127738</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/127738</guid><dc:creator><![CDATA[sdetweil]]></dc:creator><pubDate>Tue, 05 Aug 2025 22:05:20 GMT</pubDate></item><item><title><![CDATA[Reply to Get MMM-OpenWeatherMapForecast to show Fahrenheit instead of Celsius? on Tue, 05 Aug 2025 21:26:02 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/sdetweil" aria-label="Profile: sdetweil">@<bdi>sdetweil</bdi></a></p>
<p dir="auto">That did it - changed the address to 0.0.0.0 and used “<a href="http://192.168.50.177:8080/configure" target="_blank" rel="noopener noreferrer nofollow ugc">http://192.168.50.177:8080/configure</a>”.</p>
<p dir="auto">Awesome!</p>
<p dir="auto">Thank you!!</p>
]]></description><link>https://forum.magicmirror.builders/post/127737</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/127737</guid><dc:creator><![CDATA[Athlon]]></dc:creator><pubDate>Tue, 05 Aug 2025 21:26:02 GMT</pubDate></item><item><title><![CDATA[Reply to Get MMM-OpenWeatherMapForecast to show Fahrenheit instead of Celsius? on Tue, 05 Aug 2025 19:18:02 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/athlon" aria-label="Profile: Athlon">@<bdi>Athlon</bdi></a> because you have</p>
<p dir="auto">address: “localhost”</p>
<p dir="auto">ONLY localhost can connect</p>
<p dir="auto"><a href="http://localhost:8080/configure" target="_blank" rel="noopener noreferrer nofollow ugc">http://localhost:8080/configure</a></p>
<p dir="auto">you cannot use the IP address of this machine even when ON this machine…</p>
<p dir="auto">IF you used<br />
address:“0.0.0.0”<br />
that means listen on ALL interfaces (localhost AND network adapter, without specifying a specific address)</p>
<p dir="auto">then <a href="http://localhost:8080" target="_blank" rel="noopener noreferrer nofollow ugc">http://localhost:8080</a><br />
AND<br />
<a href="http://192.168.50.177:8080" target="_blank" rel="noopener noreferrer nofollow ugc">http://192.168.50.177:8080</a></p>
<p dir="auto">would work…  if you had wifi and ethernet<br />
then localhost, wifi  address AND ethernet address would be acceptable</p>
<p dir="auto">because you didn’t specify showQR, it defaults to false,<br />
and this would have displayed a message about having to use localhost ONLY</p>
]]></description><link>https://forum.magicmirror.builders/post/127731</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/127731</guid><dc:creator><![CDATA[sdetweil]]></dc:creator><pubDate>Tue, 05 Aug 2025 19:18:02 GMT</pubDate></item><item><title><![CDATA[Reply to Get MMM-OpenWeatherMapForecast to show Fahrenheit instead of Celsius? on Tue, 05 Aug 2025 18:11:35 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/sdetweil" aria-label="Profile: sdetweil">@<bdi>sdetweil</bdi></a></p>
<p dir="auto">I’ve tried to get it to work from my desktop, but no joy.</p>
<p dir="auto">This is the code at the top of my config.js file:</p>
<pre><code>/* Config Sample
 *
 * For more information on how you can configure this file
 * see https://docs.magicmirror.builders/configuration/introduction.html
 * and https://docs.magicmirror.builders/modules/configuration.html
 *
 * You can use environment variables using a `config.js.template` file instead of `config.js`
 * which will be converted to `config.js` while starting. For more information
 * see https://docs.magicmirror.builders/configuration/introduction.html#enviromnent-variables
 */
let config = {
	address: "localhost",	// Address to listen on, can be:
							// - "localhost", "127.0.0.1", "::1" to listen on loopback interface
							// - another specific IPv4/6 to listen on a specific interface
							// - "0.0.0.0", "::" to listen on any interface
							// Default, when address config is left out or empty, is "localhost"
	port: 8080,
	basePath: "/",	// The URL path where MagicMirrorÂ² is hosted. If you are using a Reverse proxy
									// you must set the sub path here. basePath must end with a /
	ipWhitelist: [],	// Set [] to allow all IP addresses
									// or add a specific IPv4 of 192.168.1.5 :
									// ["127.0.0.1", "::ffff:127.0.0.1", "::1", "::ffff:192.168.1.5"],
									// or IPv4 range of 192.168.3.0 --&gt; 192.168.3.15 use CIDR format :
									// ["127.0.0.1", "::ffff:127.0.0.1", "::1", "::ffff:192.168.3.0/28"],

	useHttps: false,			// Support HTTPS or not, default "false" will use HTTP
	httpsPrivateKey: "",	// HTTPS private key path, only require when useHttps is true
	httpsCertificate: "",	// HTTPS Certificate path, only require when useHttps is true

	language: "en",
	locale: "en-US",   // this variable is provided as a consistent location
			   // it is currently only used by 3rd party modules. no MagicMirror code uses this value
			   // as we have no usage, we  have no constraints on what this field holds
			   // see https://en.wikipedia.org/wiki/Locale_(computer_software) for the possibilities

	logLevel: ["INFO", "LOG", "WARN", "ERROR"], // Add "DEBUG" for even more logging
	timeFormat: 24,
	units: "metric",

	modules: [
</code></pre>
<p dir="auto">This what I’ve tried entering in Firefox on my desktop:</p>
<p dir="auto"><a href="http://192.168.50.177:8080/configure" target="_blank" rel="noopener noreferrer nofollow ugc">http://192.168.50.177:8080/configure</a><br />
<a href="http://192.168.50.177:9000/configure" target="_blank" rel="noopener noreferrer nofollow ugc">http://192.168.50.177:9000/configure</a><br />
0.0.0.0<br />
0.0.0.0/configure</p>
<p dir="auto">When using 0.0.0.0, I notice the address changes to “<a href="https://127.0.0.1/configure" target="_blank" rel="noopener noreferrer nofollow ugc">https://127.0.0.1/configure</a>”.</p>
<p dir="auto">In all cases, I get “Unable to Connect”.</p>
<p dir="auto">Here’s the code for the MMM-Config in my config.js file:</p>
<pre><code>{
		module:"MMM-Config",
		position:"top_right", 
			// the QR code (if requested) will appear here
		config:{
                      		}
	},

</code></pre>
<p dir="auto">Thank you for hanging in there with me on this. It works fine when I plug a mouse and keyboard into the RPi, by the way.</p>
]]></description><link>https://forum.magicmirror.builders/post/127730</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/127730</guid><dc:creator><![CDATA[Athlon]]></dc:creator><pubDate>Tue, 05 Aug 2025 18:11:35 GMT</pubDate></item><item><title><![CDATA[Reply to Get MMM-OpenWeatherMapForecast to show Fahrenheit instead of Celsius? on Tue, 05 Aug 2025 14:13:58 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/athlon" aria-label="Profile: Athlon">@<bdi>Athlon</bdi></a> address:“0.0.0.0”,<br />
ipWhitelist:[],</p>
<p dir="auto">then you should be able to access MagicMirror from desktop<br />
and then add then extra path, per the doc</p>
<p dir="auto">/configure<br />
or<br />
/installer</p>
]]></description><link>https://forum.magicmirror.builders/post/127719</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/127719</guid><dc:creator><![CDATA[sdetweil]]></dc:creator><pubDate>Tue, 05 Aug 2025 14:13:58 GMT</pubDate></item><item><title><![CDATA[Reply to Get MMM-OpenWeatherMapForecast to show Fahrenheit instead of Celsius? on Tue, 05 Aug 2025 13:14:37 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/sdetweil" aria-label="Profile: sdetweil">@<bdi>sdetweil</bdi></a></p>
<p dir="auto">I’ve installed it - works great!</p>
<p dir="auto">The only thing I can’t figure out is how to access it from my desktop. I run MM on an RPi.</p>
<p dir="auto">I’ve tried to change the address in the Basic section, but no joy.</p>
]]></description><link>https://forum.magicmirror.builders/post/127715</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/127715</guid><dc:creator><![CDATA[Athlon]]></dc:creator><pubDate>Tue, 05 Aug 2025 13:14:37 GMT</pubDate></item><item><title><![CDATA[Reply to Get MMM-OpenWeatherMapForecast to show Fahrenheit instead of Celsius? on Sun, 03 Aug 2025 10:51:55 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/sdetweil" aria-label="Profile: sdetweil">@<bdi>sdetweil</bdi></a></p>
<p dir="auto">I’ll definitely try that - Thanks again.</p>
]]></description><link>https://forum.magicmirror.builders/post/127679</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/127679</guid><dc:creator><![CDATA[Athlon]]></dc:creator><pubDate>Sun, 03 Aug 2025 10:51:55 GMT</pubDate></item><item><title><![CDATA[Reply to Get MMM-OpenWeatherMapForecast to show Fahrenheit instead of Celsius? on Thu, 31 Jul 2025 19:25:32 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/athlon" aria-label="Profile: Athlon">@<bdi>Athlon</bdi></a> you should use my MMM-Config module</p>
<p dir="auto">it provides a form for filling in the config options for MagicMirror and all modules found in the modules folder</p>
<p dir="auto">is also  allows you to open the module readme to understand the options gor each module as you go along</p>
<p dir="auto">also provides installation of modules from the 3rd<br />
party list or others not yet listed</p>
]]></description><link>https://forum.magicmirror.builders/post/127628</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/127628</guid><dc:creator><![CDATA[sdetweil]]></dc:creator><pubDate>Thu, 31 Jul 2025 19:25:32 GMT</pubDate></item><item><title><![CDATA[Reply to Get MMM-OpenWeatherMapForecast to show Fahrenheit instead of Celsius? on Thu, 31 Jul 2025 17:51:22 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/sdetweil" aria-label="Profile: sdetweil">@<bdi>sdetweil</bdi></a></p>
<p dir="auto">imperial (units) worked, but you knew it would :)</p>
<p dir="auto">Thank you!!</p>
]]></description><link>https://forum.magicmirror.builders/post/127627</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/127627</guid><dc:creator><![CDATA[Athlon]]></dc:creator><pubDate>Thu, 31 Jul 2025 17:51:22 GMT</pubDate></item><item><title><![CDATA[Reply to Get MMM-OpenWeatherMapForecast to show Fahrenheit instead of Celsius? on Thu, 31 Jul 2025 13:59:00 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/athlon" aria-label="Profile: Athlon">@<bdi>Athlon</bdi></a> module config option units?</p>
<p dir="auto"><img src="/assets/uploads/files/1753970335400-img_2005-resized.png" alt="IMG_2005.png" class=" img-fluid img-markdown" width="2796" height="1290" /></p>
]]></description><link>https://forum.magicmirror.builders/post/127624</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/127624</guid><dc:creator><![CDATA[sdetweil]]></dc:creator><pubDate>Thu, 31 Jul 2025 13:59:00 GMT</pubDate></item></channel></rss>