<?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[Help restyling MMM-ValuesByNotification]]></title><description><![CDATA[<p dir="auto">I’m wanting to show my values by notification differently, and it’s not cooperating with any css I’m throwing at it.</p>
<p dir="auto">Here’s the config - commented to show how I want it to look (adjusted upon rediscovery that some values are calculated, and I’m not gonna bother with that):</p>
<pre><code class="language-js">		{
			module: "MMM-ValuesByNotification", // https://github.com/Tom-Hirschberger/MMM-ValuesByNotification
			position: "bottom_right",
			config: {
				animationSpeed: 0,
				updateInterval: 15,
				reuseCount: 99,
				transformerFunctions: {
					degToCompass: (num) =&gt; {
						val = ((num/22.5)+.5) | 0;
						arr = ["N","NNE","NE","ENE","E","ESE", "SE", "SSE","S","SSW","SW","WSW","W","WNW","NW","NNW"];
						res = arr[(val % 16)];
						return res;
					},
					toDate: (num) =&gt; {
						return new Date(num * 1000).toLocaleString('en-US', { 
							year: 'numeric', 
							month: '2-digit', 
							day: '2-digit', 
							hour: '2-digit', 
							minute: '2-digit', 
							second: '2-digit',
							hour12: true
						});
					},
					
				},
				groups: [
				//groups should be on row next to each other. 
				// Values next to titles unless indicated. 
					{
						classes: "row",
						items: [
							{
								notification: "Weather",
								values: [
									{
										valueTitle: "&amp;nbsp;",
										valueUnit: "°F",
										jsonpath: "data.conditions[0].temp",
										valueFormat: "Number(${value}).toFixed(1)",
										classes: "xlarge",
									},
								],
							},
						],
					},
					// Insert vertical rule here 
					{
						classes: "row medium",
						items: [
							{
								notification: "Weather",
								values: [
									{
										valueTitle: "Wind:",
										valueUnit: "mph",
										jsonpath: "data.conditions[0].wind_speed_last",
										valueFormat: "Number(${value}).toFixed(1)",
										unitSpace: true,
									},
									// same line as previous
									{
										valueTitle: "&amp;nbsp;",
										jsonpath: "data.conditions[0].wind_dir_last",
										valueTransformers: ["degToCompass"],
										
									},
									// Insert &lt;HR&gt; here 
									{
										valueTitle: "Rain:",
										valueUnit: "in", 
										unitSpace: true,
										jsonpath: "data.conditions[0].rainfall_daily",
										valueFormat: "Number(${value}/100).toFixed(2)",
									},
									// same line as previous 
									{
										valueTitle: "Yearly Total",
										valueUnit: "in",
										unitSpace: true,
										jsonpath: "data.conditions[0].rainfall_year" ,
										valueFormat: "Number(${value}/100).toFixed(2)",
									},
								],
							},
						],
					},
					// Insert Vertical Rule here
					{
						classes: "row medium",
						items: [
							{
								notification: "Weather",
								values: [
									{
										valueTitle: "Humidity:",
										valueUnit: "%",
										jsonpath: "data.conditions[0].hum",
										valueFormat: "Number(${value}).toFixed(1)",
									},
									// same line as previous
									
									{
										valueTitle: "Feels like:",
										valueUnit: "°F",
										jsonpath: "data.conditions[0].thw_index",
										valueFormat: "Number(${value}).toFixed(1)",
									},
									// Insert &lt;HR&gt; here
									{
										valueTitle: "Barometer",
										valueUnit: "in Hg",
										unitSpace: true,
										jsonpath: "data.conditions[2].bar",
										valueFormat: "Number(${value}).toFixed(3)",
									},
								],
							},
						],
					},
					// Below others. 
					{
						classes: "bottom small",
						items: [
							{
								notification: "Weather",
								values: [
									{
										valueTitle: "Conditions as of:",
										jsonpath: "data.ts",
										valueTransformers: ["toDate"],
										//classes: "",
									}
								]
							},
						],
					},
				],
			},
		}, 
</code></pre>
<p dir="auto">Existing CSS modifications - and needs:</p>
<pre><code class="language-css">.MMM-ValuesByNotification {
	border-radius: 0px;
    border-style: none;
    color: black;
    background-color: white;
}

.MMM-ValuesByNotification .vbn .groupWrapper {
    border-radius: 0px;
    border-style: none;
    color: black;
    background-color: white;
}

/* vertical rule
.vertical-rule {
    margin-top: 15px;
    margin-bottom: 15px;
    width: 1px;
    background: #e0e4e7;
    float: left;
    height: 90px;
}
*/</code></pre>
]]></description><link>https://forum.magicmirror.builders/topic/18875/help-restyling-mmm-valuesbynotification</link><generator>RSS for Node</generator><lastBuildDate>Sat, 06 Jun 2026 23:23:34 GMT</lastBuildDate><atom:link href="https://forum.magicmirror.builders/topic/18875.rss" rel="self" type="application/rss+xml"/><pubDate>Fri, 12 Jul 2024 22:20:09 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Help restyling MMM-ValuesByNotification on Sat, 03 Aug 2024 00:47:59 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/bkeyport" aria-label="Profile: BKeyport">@<bdi>BKeyport</bdi></a> awesome</p>
]]></description><link>https://forum.magicmirror.builders/post/119073</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/119073</guid><dc:creator><![CDATA[sdetweil]]></dc:creator><pubDate>Sat, 03 Aug 2024 00:47:59 GMT</pubDate></item><item><title><![CDATA[Reply to Help restyling MMM-ValuesByNotification on Sat, 03 Aug 2024 00:22:52 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> you’re correct. It’s a string. That started fixing it up, just gotta reset a couple of variables I forgot to capture. 😏</p>
]]></description><link>https://forum.magicmirror.builders/post/119072</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/119072</guid><dc:creator><![CDATA[BKeyport]]></dc:creator><pubDate>Sat, 03 Aug 2024 00:22:52 GMT</pubDate></item><item><title><![CDATA[Reply to Help restyling MMM-ValuesByNotification on Thu, 01 Aug 2024 10:48:27 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/bkeyport" aria-label="Profile: BKeyport">@<bdi>BKeyport</bdi></a> if you use the developers window sources tab, you can  put a stop on the line after receivenotification</p>
<p dir="auto">and examine  the payload by putting the cursor over the word notification</p>
<p dir="auto">is it a string, or is it an object already</p>
<p dir="auto">your parse(stringify(… ))<br />
assumes it is an object already,<br />
my guess is curl returned a string</p>
]]></description><link>https://forum.magicmirror.builders/post/119035</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/119035</guid><dc:creator><![CDATA[sdetweil]]></dc:creator><pubDate>Thu, 01 Aug 2024 10:48:27 GMT</pubDate></item><item><title><![CDATA[Reply to Help restyling MMM-ValuesByNotification on Thu, 01 Aug 2024 06:32:41 GMT]]></title><description><![CDATA[<p dir="auto">So, after some more playing around, I’ve come to the determination that the HTML and class setup isn’t good for my use. As a result, I’ve got most of a new module set up for use, however, I’m having issues breaking down the JSON as processed through the notification.</p>
<p dir="auto">in short, I’m unable to get the payload on the notification to flow into the array for use. I’ve determined that it’s not flowing through to an array, based on various tests.</p>
<p dir="auto">Currently, I have this:</p>
<pre><code>	notificationReceived: function(notification, payload, sender) {
		if (notification === 'Weather') {
			this.storedEvents = JSON.parse(JSON.stringify(payload))
			this.updateDom();

		}
	},
</code></pre>
<p dir="auto">Could you provide me something better to strip down the JSON into an array?</p>
<p dir="auto">Relevant CommandtoNotification config:</p>
<pre><code>		{
						script: "/usr/bin/curl",
						args: "-X GET -H 'application/json' http://192.168.0.6:80/v1/current_conditions",
						timeout: 5000,
						sync: false,
						notifications: [
							"Weather",
						],
					}
</code></pre>
<p dir="auto">Raw data from command:</p>
<pre><code>{"data":{"did":"001D0A71573B","ts":1722493593,"conditions":[{"lsid":434637,"data_structure_type":1,"txid":1,"temp": 61.7,"hum":83.1,"dew_point": 56.5,"wet_bulb": 58.3,"heat_index": 62.0,"wind_chill": 61.7,"thw_index": 62.0,"thsw_index":null,"wind_speed_last":0.00,"wind_dir_last":0,"wind_speed_avg_last_1_min":0.00,"wind_dir_scalar_avg_last_1_min":0,"wind_speed_avg_last_2_min":0.00,"wind_dir_scalar_avg_last_2_min":0,"wind_speed_hi_last_2_min":null,"wind_dir_at_hi_speed_last_2_min":null,"wind_speed_avg_last_10_min":0.00,"wind_dir_scalar_avg_last_10_min":226,"wind_speed_hi_last_10_min":1.00,"wind_dir_at_hi_speed_last_10_min":225,"rain_size":1,"rain_rate_last":0,"rain_rate_hi":0,"rainfall_last_15_min":0,"rain_rate_hi_last_15_min":0,"rainfall_last_60_min":0,"rainfall_last_24_hr":0,"rain_storm":0,"rain_storm_start_at":null,"solar_rad":null,"uv_index":null,"rx_state":0,"trans_battery_flag":0,"rainfall_daily":0,"rainfall_monthly":19,"rainfall_year":3902,"rain_storm_last":19,"rain_storm_last_start_at":1722266760,"rain_storm_last_end_at":1722423661},{"lsid":434634,"data_structure_type":4,"temp_in": 82.9,"hum_in":44.5,"dew_point_in": 59.1,"heat_index_in": 82.8},{"lsid":434633,"data_structure_type":3,"bar_sea_level":30.057,"bar_trend": 0.011,"bar_absolute":29.593}]},"error":null}
</code></pre>
<p dir="auto">formatted json:</p>
<pre><code>{
  "data": {
    "did": "001D0A71573B",
    "ts": 1722493593,
    "conditions": [
      {
        "lsid": 434637,
        "data_structure_type": 1,
        "txid": 1,
        "temp": 61.7,
        "hum": 83.1,
        "dew_point": 56.5,
        "wet_bulb": 58.3,
        "heat_index": 62,
        "wind_chill": 61.7,
        "thw_index": 62,
        "thsw_index": null,
        "wind_speed_last": 0,
        "wind_dir_last": 0,
        "wind_speed_avg_last_1_min": 0,
        "wind_dir_scalar_avg_last_1_min": 0,
        "wind_speed_avg_last_2_min": 0,
        "wind_dir_scalar_avg_last_2_min": 0,
        "wind_speed_hi_last_2_min": null,
        "wind_dir_at_hi_speed_last_2_min": null,
        "wind_speed_avg_last_10_min": 0,
        "wind_dir_scalar_avg_last_10_min": 226,
        "wind_speed_hi_last_10_min": 1,
        "wind_dir_at_hi_speed_last_10_min": 225,
        "rain_size": 1,
        "rain_rate_last": 0,
        "rain_rate_hi": 0,
        "rainfall_last_15_min": 0,
        "rain_rate_hi_last_15_min": 0,
        "rainfall_last_60_min": 0,
        "rainfall_last_24_hr": 0,
        "rain_storm": 0,
        "rain_storm_start_at": null,
        "solar_rad": null,
        "uv_index": null,
        "rx_state": 0,
        "trans_battery_flag": 0,
        "rainfall_daily": 0,
        "rainfall_monthly": 19,
        "rainfall_year": 3902,
        "rain_storm_last": 19,
        "rain_storm_last_start_at": 1722266760,
        "rain_storm_last_end_at": 1722423661
      },
      {
        "lsid": 434634,
        "data_structure_type": 4,
        "temp_in": 82.9,
        "hum_in": 44.5,
        "dew_point_in": 59.1,
        "heat_index_in": 82.8
      },
      {
        "lsid": 434633,
        "data_structure_type": 3,
        "bar_sea_level": 30.057,
        "bar_trend": 0.011,
        "bar_absolute": 29.593
      }
    ]
  },
  "error": null
}
</code></pre>
<p dir="auto">I already know what the path is to the various array elements (from ValuesByNotification’s config:</p>
<pre><code>{
										valueTitle: "Temperature Outdoors",
										valueUnit: "°",
										jsonpath: "data.conditions[0].temp",
										//valueFormat: "Number(${value}).toFixed(2)",
										//classes: "",
									},
</code></pre>
<p dir="auto">Should be a path something like <code>this.storedEvents.data.conditions[0].temp</code></p>
<p dir="auto">Thanks!</p>
]]></description><link>https://forum.magicmirror.builders/post/119034</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/119034</guid><dc:creator><![CDATA[BKeyport]]></dc:creator><pubDate>Thu, 01 Aug 2024 06:32:41 GMT</pubDate></item><item><title><![CDATA[Reply to Help restyling MMM-ValuesByNotification on Mon, 22 Jul 2024 19:44:51 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/bkeyport" aria-label="Profile: BKeyport">@<bdi>BKeyport</bdi></a> Hi, can you make a screenshot of the things styled outside MagicMirror so we can see how it should look exactly?<br />
Maybe you will need some additional classes in your module config to make it possible to select the different elements jn CSS.</p>
]]></description><link>https://forum.magicmirror.builders/post/118942</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/118942</guid><dc:creator><![CDATA[wishmaster270]]></dc:creator><pubDate>Mon, 22 Jul 2024 19:44:51 GMT</pubDate></item><item><title><![CDATA[Reply to Help restyling MMM-ValuesByNotification on Mon, 22 Jul 2024 04:29:58 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/bkeyport" aria-label="Profile: BKeyport">@<bdi>BKeyport</bdi></a> can you send me info on what you are trying to do</p>
<p dir="auto">outside and inside</p>
<p dir="auto">same userid at gmail</p>
]]></description><link>https://forum.magicmirror.builders/post/118924</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/118924</guid><dc:creator><![CDATA[sdetweil]]></dc:creator><pubDate>Mon, 22 Jul 2024 04:29:58 GMT</pubDate></item><item><title><![CDATA[Reply to Help restyling MMM-ValuesByNotification on Mon, 22 Jul 2024 02:41:53 GMT]]></title><description><![CDATA[<p dir="auto">I’ve officially given up.</p>
<p dir="auto">I can get it to start to look right outside the magicmirror environment, and even with unsetting <em>everything</em> styled within the ValuesByNotification app, I can’t get it to duplicate within Magic Mirror.</p>
<p dir="auto">This is with copying Main.css into a test environment, along with the other modules’ CSS files, and using the output HTML from MagicMirror.</p>
<p dir="auto">Works great in test, but the moment I try to make it go live, it’s doing random things.</p>
<p dir="auto">I hate CSS. I really do.</p>
]]></description><link>https://forum.magicmirror.builders/post/118921</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/118921</guid><dc:creator><![CDATA[BKeyport]]></dc:creator><pubDate>Mon, 22 Jul 2024 02:41:53 GMT</pubDate></item><item><title><![CDATA[Reply to Help restyling MMM-ValuesByNotification on Sun, 14 Jul 2024 21:26:50 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/bkeyport" aria-label="Profile: BKeyport">@<bdi>BKeyport</bdi></a> said in <a href="/post/118857">Help restyling MMM-ValuesByNotification</a>:</p>
<blockquote>
<p dir="auto">the</p>
</blockquote>
<p dir="auto">if the class style affects a single element, then the style goes there</p>
<p dir="auto">if it affects multiple items,  then on their parent</p>
<p dir="auto">and then you need to look at the style to see if it can be inherited from an ancestor</p>
<p dir="auto"><a href="http://web.simmons.edu/~grabiner/comm244/weekfour/css-concepts.html#:~:text=In%20CSS%2C%20some%20styles%20are,tree%20while%20others%20are%20not" target="_blank" rel="noopener noreferrer nofollow ugc">http://web.simmons.edu/~grabiner/comm244/weekfour/css-concepts.html#:~:text=In CSS%2C some styles are,tree while others are not</a>.</p>
]]></description><link>https://forum.magicmirror.builders/post/118858</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/118858</guid><dc:creator><![CDATA[sdetweil]]></dc:creator><pubDate>Sun, 14 Jul 2024 21:26:50 GMT</pubDate></item><item><title><![CDATA[Reply to Help restyling MMM-ValuesByNotification on Sun, 14 Jul 2024 21:05:21 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/wishmaster270" aria-label="Profile: wishmaster270">@<bdi>wishmaster270</bdi></a> I think the problem I’m having is figuring out where to place the classes to trigger what I want. Flex to me seems a bit erratic with how to set things.</p>
]]></description><link>https://forum.magicmirror.builders/post/118857</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/118857</guid><dc:creator><![CDATA[BKeyport]]></dc:creator><pubDate>Sun, 14 Jul 2024 21:05:21 GMT</pubDate></item><item><title><![CDATA[Reply to Help restyling MMM-ValuesByNotification on Sun, 14 Jul 2024 07:48:58 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/bkeyport" aria-label="Profile: BKeyport">@<bdi>BKeyport</bdi></a><br />
Hi and sorry for the late reply.<br />
I am not sure if I will have time to test your case the next days.</p>
<p dir="auto">I think your main problem is that you try to use “normal” styling directives for the layout but I use flexbox css as the basic.</p>
<p dir="auto">You can find a short tutorial at:<br />
<a href="https://css-tricks.com/snippets/css/a-guide-to-flexbox/" target="_blank" rel="noopener noreferrer nofollow ugc">https://css-tricks.com/snippets/css/a-guide-to-flexbox/</a></p>
<p dir="auto">Edit:<br />
Had 5 minutes and did a quick check.<br />
I think the following two statements are a good starting point:</p>
<pre><code>.MMM-ValuesByNotification .vbn .groupsWrapper {
  flex-direction: row;
}

.MMM-ValuesByNotification .vbn .valueWrapper {
  flex-direction: row;
}
</code></pre>
]]></description><link>https://forum.magicmirror.builders/post/118844</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/118844</guid><dc:creator><![CDATA[wishmaster270]]></dc:creator><pubDate>Sun, 14 Jul 2024 07:48:58 GMT</pubDate></item><item><title><![CDATA[Reply to Help restyling MMM-ValuesByNotification on Sun, 14 Jul 2024 00:24:11 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/bkeyport" aria-label="Profile: BKeyport">@<bdi>BKeyport</bdi></a> ok, it’s not row, column or anything else.</p>
<p dir="auto">the stuff before the { is called the selector clause. it selects the elements  (document wide) that the stuff inside the braces will be applied to.</p>
<p dir="auto">many elements do NOT  inherit settings from their parent, much less their grandparent</p>
<p dir="auto">I use this cheatsheet to help me remember<br />
<a href="https://www.w3schools.com/cssref/css_selectors.php" target="_blank" rel="noopener noreferrer nofollow ugc">https://www.w3schools.com/cssref/css_selectors.php</a></p>
<p dir="auto">spaces between elements in the selector matter.</p>
<p dir="auto">no space means AN element MUST have ALL the attributes.  not parent child…</p>
<p dir="auto">sometimes for me it is better read right to left.</p>
<p dir="auto">styles are selected by the nearest specifier if there are multiples. unless you use the !important override.</p>
<pre><code class="language-text">. means class
# means id
[] means element  attribute [src...]
no prefix  means tag name,  table, p, div ..
</code></pre>
]]></description><link>https://forum.magicmirror.builders/post/118842</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/118842</guid><dc:creator><![CDATA[sdetweil]]></dc:creator><pubDate>Sun, 14 Jul 2024 00:24:11 GMT</pubDate></item><item><title><![CDATA[Reply to Help restyling MMM-ValuesByNotification on Sun, 14 Jul 2024 00:03:15 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> I’m aware of everything you said, the problem is that I can’t get the CSS to cooperate. I can get 'em all to row, all to column (Default), etc, just not anything else.</p>
<p dir="auto">Where I’m weakest is CSS, I have a hard time wrapping my head around it.</p>
]]></description><link>https://forum.magicmirror.builders/post/118841</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/118841</guid><dc:creator><![CDATA[BKeyport]]></dc:creator><pubDate>Sun, 14 Jul 2024 00:03:15 GMT</pubDate></item><item><title><![CDATA[Reply to Help restyling MMM-ValuesByNotification on Sat, 13 Jul 2024 09:53:29 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/bkeyport" aria-label="Profile: BKeyport">@<bdi>BKeyport</bdi></a> remember, along the bottom edge of the elements tab view window is the selector style clauses  for the selected element</p>
]]></description><link>https://forum.magicmirror.builders/post/118834</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/118834</guid><dc:creator><![CDATA[sdetweil]]></dc:creator><pubDate>Sat, 13 Jul 2024 09:53:29 GMT</pubDate></item><item><title><![CDATA[Reply to Help restyling MMM-ValuesByNotification on Sat, 13 Jul 2024 00:46:12 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/bkeyport" aria-label="Profile: BKeyport">@<bdi>BKeyport</bdi></a> well pausing makes it hard to see the results.</p>
]]></description><link>https://forum.magicmirror.builders/post/118829</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/118829</guid><dc:creator><![CDATA[sdetweil]]></dc:creator><pubDate>Sat, 13 Jul 2024 00:46:12 GMT</pubDate></item><item><title><![CDATA[Reply to Help restyling MMM-ValuesByNotification on Fri, 12 Jul 2024 23:44:34 GMT]]></title><description><![CDATA[<p dir="auto">(old) Sample data:</p>
<pre><code class="language-json">{"data":{"did":"001D0A71573B","ts":1716603038,"conditions":[{"lsid":434637,"data_structure_type":1,"txid":1,"temp": 56.9,"hum":72.8,"dew_point": 48.3,"wet_bulb": 51.5,"heat_index": 56.2,"wind_chill": 56.9,"thw_index": 56.2,"thsw_index":null,"wind_speed_last":2.00,"wind_dir_last":146,"wind_speed_avg_last_1_min":2.00,"wind_dir_scalar_avg_last_1_min":157,"wind_speed_avg_last_2_min":2.00,"wind_dir_scalar_avg_last_2_min":157,"wind_speed_hi_last_2_min":5.00,"wind_dir_at_hi_speed_last_2_min":169,"wind_speed_avg_last_10_min":1.31,"wind_dir_scalar_avg_last_10_min":180,"wind_speed_hi_last_10_min":5.00,"wind_dir_at_hi_speed_last_10_min":169,"rain_size":1,"rain_rate_last":0,"rain_rate_hi":0,"rainfall_last_15_min":0,"rain_rate_hi_last_15_min":0,"rainfall_last_60_min":0,"rainfall_last_24_hr":7,"rain_storm":7,"rain_storm_start_at":1716576961,"solar_rad":null,"uv_index":null,"rx_state":0,"trans_battery_flag":0,"rainfall_daily":7,"rainfall_monthly":155,"rainfall_year":3713,"rain_storm_last":40,"rain_storm_last_start_at":1716299460,"rain_storm_last_end_at":1716433260},{"lsid":434634,"data_structure_type":4,"temp_in": 83.5,"hum_in":29.5,"dew_point_in": 48.4,"heat_index_in": 81.5},{"lsid":434633,"data_structure_type":3,"bar_sea_level":29.826,"bar_trend":-0.038,"bar_absolute":29.365}]},"error":null}
</code></pre>
]]></description><link>https://forum.magicmirror.builders/post/118828</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/118828</guid><dc:creator><![CDATA[BKeyport]]></dc:creator><pubDate>Fri, 12 Jul 2024 23:44:34 GMT</pubDate></item><item><title><![CDATA[Reply to Help restyling MMM-ValuesByNotification on Fri, 12 Jul 2024 23:42:53 GMT]]></title><description><![CDATA[<p dir="auto">of course. Or pause on the sources page. Same effect.</p>
]]></description><link>https://forum.magicmirror.builders/post/118827</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/118827</guid><dc:creator><![CDATA[BKeyport]]></dc:creator><pubDate>Fri, 12 Jul 2024 23:42:53 GMT</pubDate></item><item><title><![CDATA[Reply to Help restyling MMM-ValuesByNotification on Fri, 12 Jul 2024 23:07:12 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/bkeyport" aria-label="Profile: BKeyport">@<bdi>BKeyport</bdi></a> and when you use the developers window to select those elements and style them?</p>
<p dir="auto">change the  update intervals so you have time to play</p>
]]></description><link>https://forum.magicmirror.builders/post/118826</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/118826</guid><dc:creator><![CDATA[sdetweil]]></dc:creator><pubDate>Fri, 12 Jul 2024 23:07:12 GMT</pubDate></item></channel></rss>