<?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[Trouble changing to 12 hour time and to Fahrenheit.]]></title><description><![CDATA[<p dir="auto">Hi, I am having a huge problem getting the time in the default clock module to change to 12 hour time, and the same problem with setting both the current weather and the weather forecast modules to Fahrenheit.</p>
<p dir="auto">I tried using the information here:  <a href="https://github.com/MichMich/MagicMirror/wiki/MagicMirror%C2%B2-Modules" target="_blank" rel="noopener noreferrer nofollow ugc">https://github.com/MichMich/MagicMirror/wiki/MagicMirror²-Modules</a><br />
But it either causes the module to fail or makes no change.<br />
Any help is appreciated.</p>
]]></description><link>https://forum.magicmirror.builders/topic/924/trouble-changing-to-12-hour-time-and-to-fahrenheit</link><generator>RSS for Node</generator><lastBuildDate>Tue, 21 Apr 2026 16:50:52 GMT</lastBuildDate><atom:link href="https://forum.magicmirror.builders/topic/924.rss" rel="self" type="application/rss+xml"/><pubDate>Fri, 04 Nov 2016 08:57:20 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Trouble changing to 12 hour time and to Fahrenheit. on Fri, 04 Nov 2016 09:47:50 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/yawns" aria-label="Profile: yawns">@<bdi>yawns</bdi></a></p>
<p dir="auto">I actually managed to figure it out. The problem was in the configs for the individual modules. They were set for ´config.js´ instead of ´config.units´ and ´congif.timeFormat´. Once I changed those it worked out.</p>
<p dir="auto">Thanks for the help though!</p>
]]></description><link>https://forum.magicmirror.builders/post/7521</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/7521</guid><dc:creator><![CDATA[bez252]]></dc:creator><pubDate>Fri, 04 Nov 2016 09:47:50 GMT</pubDate></item><item><title><![CDATA[Reply to Trouble changing to 12 hour time and to Fahrenheit. on Fri, 04 Nov 2016 09:44:20 GMT]]></title><description><![CDATA[<p dir="auto">Looks fine to me except for the last line. The ’ ’ around undefined are not the right ones. But that could be a copy and paste problem. I don’t have a computer with MagicMirror currently, so I can’t test your config file right now.</p>
]]></description><link>https://forum.magicmirror.builders/post/7520</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/7520</guid><dc:creator><![CDATA[yawns]]></dc:creator><pubDate>Fri, 04 Nov 2016 09:44:20 GMT</pubDate></item><item><title><![CDATA[Reply to Trouble changing to 12 hour time and to Fahrenheit. on Fri, 04 Nov 2016 09:23:46 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/yawns" aria-label="Profile: yawns">@<bdi>yawns</bdi></a><br />
´/* Magic Mirror Config<br />
*</p>
<ul>
<li>By Michael Teeuw <a href="http://michaelteeuw.nl" target="_blank" rel="noopener noreferrer nofollow ugc">http://michaelteeuw.nl</a></li>
<li>MIT Licensed.<br />
*/</li>
</ul>
<p dir="auto">var config = {<br />
port: 8080,</p>
<pre><code>language: 'en',
timeFormat: 12,
units: 'imperial',

modules: [
	{
		module: 'alert',
	},
	{
		module: 'clock',
		position: 'top_left'
	},
	{
		module: 'calendar',
		header: 'US Holidays',
		position: 'top_left',
		config: {
			calendars: [
				{
					symbol: 'calendar-check-o ',
					url: 'webcal://www.calendarlabs.com/templates/ical/US-Holidays.ics'
				}
			]
		}
	},
	{
		module: 'compliments',
		position: 'lower_third'
	},
	{
		module: 'currentweather',
		position: 'top_right',
		config: {
			location: 'Charlottesville',
			locationID: '',  //ID from http://www.openweathermap.org
			appid: '1a42661953c78c36f761da67f2d94fef'
		}
	},
	{
		module: 'weatherforecast',
		position: 'top_right',
		header: 'Weather Forecast',
		config: {
            location: 'Charlottesville',
			locationID: '5128581',  //ID from http://www.openweathermap.org
            appid: '1a42661953c78c36f761da67f2d94fef'
		}
	},
	{
		module: 'newsfeed',
		position: 'bottom_bar',
		config: {
			feeds: [
				{
					title: "New York Times",
					url: "http://www.nytimes.com/services/xml/rss/nyt/HomePage.xml"
				}
			],
			showSourceTitle: true,
			showPublishDate: true
		}
	},
]
</code></pre>
<p dir="auto">};</p>
<p dir="auto">/*************** DO NOT EDIT THE LINE BELOW ***************/<br />
if (typeof module !== ‘undefined’) {module.exports = config;}´</p>
]]></description><link>https://forum.magicmirror.builders/post/7519</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/7519</guid><dc:creator><![CDATA[bez252]]></dc:creator><pubDate>Fri, 04 Nov 2016 09:23:46 GMT</pubDate></item><item><title><![CDATA[Reply to Trouble changing to 12 hour time and to Fahrenheit. on Fri, 04 Nov 2016 09:13:50 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/bez252" aria-label="Profile: bez252">@<bdi>bez252</bdi></a></p>
<pre><code class="language-javascript">language: 'en',
timeFormat: 12,
units: 'imperial',
</code></pre>
<p dir="auto">If you edit your config file and change the three lines at the top to look like this then you should be good. CurrentWeather and Clock by default use the settings in your config file.<br />
Otherwise please post your config.js completely. Please enclose the content with back ticks `(this one).</p>
]]></description><link>https://forum.magicmirror.builders/post/7516</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/7516</guid><dc:creator><![CDATA[yawns]]></dc:creator><pubDate>Fri, 04 Nov 2016 09:13:50 GMT</pubDate></item></channel></rss>