<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/">
	<channel>
		<title><![CDATA[LogicMachine Forum - Visu]]></title>
		<link>https://forum.logicmachine.net/</link>
		<description><![CDATA[LogicMachine Forum - https://forum.logicmachine.net]]></description>
		<pubDate>Wed, 15 Jul 2026 13:29:38 +0000</pubDate>
		<generator>MyBB</generator>
		<item>
			<title><![CDATA[Frame Trend logs from Neighbour]]></title>
			<link>https://forum.logicmachine.net/showthread.php?tid=6505</link>
			<pubDate>Thu, 09 Jul 2026 15:59:42 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://forum.logicmachine.net/member.php?action=profile&uid=2594">function</a>]]></dc:creator>
			<guid isPermaLink="false">https://forum.logicmachine.net/showthread.php?tid=6505</guid>
			<description><![CDATA[Hi!  <img src="https://forum.logicmachine.net/images/smilies/smile.png" alt="Smile" title="Smile" class="smilie smilie_1" /><br />
<br />
Is it possible to use the Frame widget to view a Trend logs URL from a neighbour with the new Visu?<br />
I've tried but runs into a problem where i have to login to the frame.]]></description>
			<content:encoded><![CDATA[Hi!  <img src="https://forum.logicmachine.net/images/smilies/smile.png" alt="Smile" title="Smile" class="smilie smilie_1" /><br />
<br />
Is it possible to use the Frame widget to view a Trend logs URL from a neighbour with the new Visu?<br />
I've tried but runs into a problem where i have to login to the frame.]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Import page]]></title>
			<link>https://forum.logicmachine.net/showthread.php?tid=6501</link>
			<pubDate>Mon, 06 Jul 2026 04:33:30 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://forum.logicmachine.net/member.php?action=profile&uid=3803">dezza@sdme.it</a>]]></dc:creator>
			<guid isPermaLink="false">https://forum.logicmachine.net/showthread.php?tid=6501</guid>
			<description><![CDATA[I need to import one or more pages from one LM to another. Is this possible?]]></description>
			<content:encoded><![CDATA[I need to import one or more pages from one LM to another. Is this possible?]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Enabling the Old Visualization Menu via script]]></title>
			<link>https://forum.logicmachine.net/showthread.php?tid=6498</link>
			<pubDate>Thu, 02 Jul 2026 09:34:26 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://forum.logicmachine.net/member.php?action=profile&uid=11">savaskorkmaz</a>]]></dc:creator>
			<guid isPermaLink="false">https://forum.logicmachine.net/showthread.php?tid=6498</guid>
			<description><![CDATA[Hello,<br />
One of our partners restored a backup from a project created with the old visualization system on another LogicMachine to a new LogicMachine running the 2025 firmware.<br />
Normally, the old visualization menu is activated automatically when an old backup is restored, but this did not happen on this device.<br />
Could you please provide us with a script to enable the old visualization menu?<br />
Thx]]></description>
			<content:encoded><![CDATA[Hello,<br />
One of our partners restored a backup from a project created with the old visualization system on another LogicMachine to a new LogicMachine running the 2025 firmware.<br />
Normally, the old visualization menu is activated automatically when an old backup is restored, but this did not happen on this device.<br />
Could you please provide us with a script to enable the old visualization menu?<br />
Thx]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Tile view layout broken (large empty gaps) for thermostat widgets on mobile Safari —]]></title>
			<link>https://forum.logicmachine.net/showthread.php?tid=6491</link>
			<pubDate>Tue, 30 Jun 2026 12:11:41 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://forum.logicmachine.net/member.php?action=profile&uid=6067">andreaemanuelli</a>]]></dc:creator>
			<guid isPermaLink="false">https://forum.logicmachine.net/showthread.php?tid=6491</guid>
			<description><![CDATA[hi everyone<br />
<br />
Firmware: LM5p2-KCDZ, 20251204<br />
Visu version: new Visu (2025.11)<br />
Browser: Safari on iOS (also reproduced via LM Home app, same engine)<br />
<br />
ISSUE<br />
A Category containing 7 native "thermostat" type widgets (tile_width=2, <br />
tile_height=2 each) renders with large empty vertical gaps between rows <br />
on iPhone, both in portrait and on first load. Widgets are present in <br />
the DOM (confirmed via remote Web Inspector — all 7 elements have <br />
display:block, visibility:visible, correct getBoundingClientRect()), <br />
but visually appear scattered with huge blank spaces between them.<br />
<br />
The same Category with simple "switch" type widgets (lights, in the <br />
same Visu, same device) renders perfectly with no gaps.<br />
<br />
WORKAROUND FOUND<br />
Rotating the device screen once (portrait -&gt; landscape -&gt; portrait, <br />
or just to landscape) immediately fixes the layout — all widgets <br />
snap into a correct, gap-free grid.<br />
<br />
DIAGNOSIS<br />
This strongly suggests a Muuri grid layout calculation race condition: <br />
the thermostat widget's internal SVG (circular arc, +/- buttons) takes <br />
longer to reach final rendered dimensions than a simple switch icon. <br />
If Muuri's initial layout() call measures widget dimensions before the <br />
SVG has settled, it computes wrong absolute positions (translateX/<br />
translateY) for those items, leaving gaps. A manual resize event <br />
(screen rotation) forces Muuri to recalculate using final dimensions.<br />
<br />
ATTEMPTED WORKAROUND (did not work)<br />
Tried dispatching window.dispatchEvent(new Event('resize')) via <br />
custom JS at multiple delays after page load (600ms/1200ms/2000ms/<br />
3500ms) to replicate the rotation effect. This did NOT fix the issue — <br />
suggesting Muuri's internal layout recalculation is not triggered by <br />
the generic window resize event, but by something else (ResizeObserver <br />
on the container, or an internal viewport-change handler specific to <br />
orientation change).<br />
<br />
QUESTIONS<br />
1. Is this a known issue with the thermostat widget (or any widget <br />
  with internal SVG) in tile view on narrow viewports?<br />
2. Is there a way to programmatically trigger Muuri's layout() / <br />
  refreshItems() from custom JS, since the Muuri instance isn't <br />
  exposed on window?<br />
3. Is there a recommended fix (CSS containment, explicit width/height <br />
  constraints, etc.) to prevent this race condition?<br />
<br />
Happy to share screenshots, exported widget JSON and console output <br />
if useful for reproduction.<br />
<br />
Ctrl+F5 already tried, no effect (this isn't a cache issue — confirmed <br />
via fresh hard reload).]]></description>
			<content:encoded><![CDATA[hi everyone<br />
<br />
Firmware: LM5p2-KCDZ, 20251204<br />
Visu version: new Visu (2025.11)<br />
Browser: Safari on iOS (also reproduced via LM Home app, same engine)<br />
<br />
ISSUE<br />
A Category containing 7 native "thermostat" type widgets (tile_width=2, <br />
tile_height=2 each) renders with large empty vertical gaps between rows <br />
on iPhone, both in portrait and on first load. Widgets are present in <br />
the DOM (confirmed via remote Web Inspector — all 7 elements have <br />
display:block, visibility:visible, correct getBoundingClientRect()), <br />
but visually appear scattered with huge blank spaces between them.<br />
<br />
The same Category with simple "switch" type widgets (lights, in the <br />
same Visu, same device) renders perfectly with no gaps.<br />
<br />
WORKAROUND FOUND<br />
Rotating the device screen once (portrait -&gt; landscape -&gt; portrait, <br />
or just to landscape) immediately fixes the layout — all widgets <br />
snap into a correct, gap-free grid.<br />
<br />
DIAGNOSIS<br />
This strongly suggests a Muuri grid layout calculation race condition: <br />
the thermostat widget's internal SVG (circular arc, +/- buttons) takes <br />
longer to reach final rendered dimensions than a simple switch icon. <br />
If Muuri's initial layout() call measures widget dimensions before the <br />
SVG has settled, it computes wrong absolute positions (translateX/<br />
translateY) for those items, leaving gaps. A manual resize event <br />
(screen rotation) forces Muuri to recalculate using final dimensions.<br />
<br />
ATTEMPTED WORKAROUND (did not work)<br />
Tried dispatching window.dispatchEvent(new Event('resize')) via <br />
custom JS at multiple delays after page load (600ms/1200ms/2000ms/<br />
3500ms) to replicate the rotation effect. This did NOT fix the issue — <br />
suggesting Muuri's internal layout recalculation is not triggered by <br />
the generic window resize event, but by something else (ResizeObserver <br />
on the container, or an internal viewport-change handler specific to <br />
orientation change).<br />
<br />
QUESTIONS<br />
1. Is this a known issue with the thermostat widget (or any widget <br />
  with internal SVG) in tile view on narrow viewports?<br />
2. Is there a way to programmatically trigger Muuri's layout() / <br />
  refreshItems() from custom JS, since the Muuri instance isn't <br />
  exposed on window?<br />
3. Is there a recommended fix (CSS containment, explicit width/height <br />
  constraints, etc.) to prevent this race condition?<br />
<br />
Happy to share screenshots, exported widget JSON and console output <br />
if useful for reproduction.<br />
<br />
Ctrl+F5 already tried, no effect (this isn't a cache issue — confirmed <br />
via fresh hard reload).]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[centralized supervision of LM]]></title>
			<link>https://forum.logicmachine.net/showthread.php?tid=6486</link>
			<pubDate>Wed, 24 Jun 2026 12:59:03 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://forum.logicmachine.net/member.php?action=profile&uid=2310">Frank68</a>]]></dc:creator>
			<guid isPermaLink="false">https://forum.logicmachine.net/showthread.php?tid=6486</guid>
			<description><![CDATA[Good morning, I need to know if it's possible to monitor multiple LMs from a single point. I tried opening windows pointing to the other LMs on a "MASTER" logic machine. Is this the correct way to do it? How can I centralize the alarms on a single LM?<br />
<br />
Can you suggest a better or optimal way?<br />
<br />
Thanks]]></description>
			<content:encoded><![CDATA[Good morning, I need to know if it's possible to monitor multiple LMs from a single point. I tried opening windows pointing to the other LMs on a "MASTER" logic machine. Is this the correct way to do it? How can I centralize the alarms on a single LM?<br />
<br />
Can you suggest a better or optimal way?<br />
<br />
Thanks]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Scene Control icons missing in cloud visualization after installing visu-20260618-2.i]]></title>
			<link>https://forum.logicmachine.net/showthread.php?tid=6485</link>
			<pubDate>Wed, 24 Jun 2026 12:17:13 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://forum.logicmachine.net/member.php?action=profile&uid=5871">Ahmed.K</a>]]></dc:creator>
			<guid isPermaLink="false">https://forum.logicmachine.net/showthread.php?tid=6485</guid>
			<description><![CDATA[Hello,<br />
After installing the latest beta visualization package visu-20260618-2.ipk , I noticed what seems to be a visualization rendering issue related to <span style="font-weight: bold;" class="mycode_b">Scene Control icons</span>.<br />
<br />
The icons are displayed correctly in the local visualization environment:<br />
<ul class="mycode_list"><li>they are visible in <span style="font-weight: bold;" class="mycode_b">admin visualization mode</span><br />
</li>
<li>they are also visible in the <span style="font-weight: bold;" class="mycode_b">tile/editor view</span><br />
<br />
</li>
</ul>
However, after uploading / publishing the visualization to the cloud, the <span style="font-weight: bold;" class="mycode_b">scene icons are no longer displayed</span> in the final cloud visualization, while the rest of the visualization loads normally.<br />
<br />
Current behavior observed:<br />
<ul class="mycode_list"><li><span style="font-weight: bold;" class="mycode_b">local admin visualization</span> → OK, scene icons visible<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">tile/editor view</span> → OK, scene icons visible<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">cloud / published visualization</span> → scene icons missing<br />
</li>
</ul>
<br />
This issue appeared after installing visu-20260618-2.ipk beta<br />
, so it looks like there may be a problem related to how the Scene Control icon assets are handled in the cloud-rendered visualization after upload/publish.<br />
From the behavior, it seems the issue is not with Scene Control itself in local visualization, but rather with the rendering / loading of the scene icon resources once the project is uploaded to the cloud.<br />
Could you please check whether this beta package introduces a bug related to Scene Control icon rendering in cloud visualization?<br />
<br />
I am attaching screenshots showing:<br />
<br />
<ol type="1" class="mycode_list"><li>scene icons visible in local/admin visualization<br />
</li>
<li>scene icons visible in tile/editor view<br />
</li>
<li>the same icons missing after cloud upload / publish<br />
</li>
</ol>
<br />
Thank you.<br />
<div>
<img src="https://forum.logicmachine.net/images/attachtypes/image.png" title="PNG Image" border="0" alt=".png" />
&nbsp;&nbsp;<a href="attachment.php?aid=5044" target="_blank">image_2026-06-24_130656608.png</a> (Size: 56.6 KB / Downloads: 31)</div>
<br />
<div>
<img src="https://forum.logicmachine.net/images/attachtypes/image.png" title="PNG Image" border="0" alt=".png" />
&nbsp;&nbsp;<a href="attachment.php?aid=5045" target="_blank">image_2026-06-24_130900308.png</a> (Size: 112.07 KB / Downloads: 31)</div>
<br />
<div>
<img src="https://forum.logicmachine.net/images/attachtypes/image.png" title="PNG Image" border="0" alt=".png" />
&nbsp;&nbsp;<a href="attachment.php?aid=5046" target="_blank">image_2026-06-24_130932639.png</a> (Size: 28.41 KB / Downloads: 31)</div>
<br />
<div>
<img src="https://forum.logicmachine.net/images/attachtypes/image.png" title="PNG Image" border="0" alt=".png" />
&nbsp;&nbsp;<a href="attachment.php?aid=5047" target="_blank">image_2026-06-24_130958622.png</a> (Size: 135.34 KB / Downloads: 31)</div>
<br />
<div>
<img src="https://forum.logicmachine.net/images/attachtypes/image.png" title="PNG Image" border="0" alt=".png" />
&nbsp;&nbsp;<a href="attachment.php?aid=5048" target="_blank">image_2026-06-24_131023845.png</a> (Size: 26.18 KB / Downloads: 31)</div>
]]></description>
			<content:encoded><![CDATA[Hello,<br />
After installing the latest beta visualization package visu-20260618-2.ipk , I noticed what seems to be a visualization rendering issue related to <span style="font-weight: bold;" class="mycode_b">Scene Control icons</span>.<br />
<br />
The icons are displayed correctly in the local visualization environment:<br />
<ul class="mycode_list"><li>they are visible in <span style="font-weight: bold;" class="mycode_b">admin visualization mode</span><br />
</li>
<li>they are also visible in the <span style="font-weight: bold;" class="mycode_b">tile/editor view</span><br />
<br />
</li>
</ul>
However, after uploading / publishing the visualization to the cloud, the <span style="font-weight: bold;" class="mycode_b">scene icons are no longer displayed</span> in the final cloud visualization, while the rest of the visualization loads normally.<br />
<br />
Current behavior observed:<br />
<ul class="mycode_list"><li><span style="font-weight: bold;" class="mycode_b">local admin visualization</span> → OK, scene icons visible<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">tile/editor view</span> → OK, scene icons visible<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">cloud / published visualization</span> → scene icons missing<br />
</li>
</ul>
<br />
This issue appeared after installing visu-20260618-2.ipk beta<br />
, so it looks like there may be a problem related to how the Scene Control icon assets are handled in the cloud-rendered visualization after upload/publish.<br />
From the behavior, it seems the issue is not with Scene Control itself in local visualization, but rather with the rendering / loading of the scene icon resources once the project is uploaded to the cloud.<br />
Could you please check whether this beta package introduces a bug related to Scene Control icon rendering in cloud visualization?<br />
<br />
I am attaching screenshots showing:<br />
<br />
<ol type="1" class="mycode_list"><li>scene icons visible in local/admin visualization<br />
</li>
<li>scene icons visible in tile/editor view<br />
</li>
<li>the same icons missing after cloud upload / publish<br />
</li>
</ol>
<br />
Thank you.<br />
<div>
<img src="https://forum.logicmachine.net/images/attachtypes/image.png" title="PNG Image" border="0" alt=".png" />
&nbsp;&nbsp;<a href="attachment.php?aid=5044" target="_blank">image_2026-06-24_130656608.png</a> (Size: 56.6 KB / Downloads: 31)</div>
<br />
<div>
<img src="https://forum.logicmachine.net/images/attachtypes/image.png" title="PNG Image" border="0" alt=".png" />
&nbsp;&nbsp;<a href="attachment.php?aid=5045" target="_blank">image_2026-06-24_130900308.png</a> (Size: 112.07 KB / Downloads: 31)</div>
<br />
<div>
<img src="https://forum.logicmachine.net/images/attachtypes/image.png" title="PNG Image" border="0" alt=".png" />
&nbsp;&nbsp;<a href="attachment.php?aid=5046" target="_blank">image_2026-06-24_130932639.png</a> (Size: 28.41 KB / Downloads: 31)</div>
<br />
<div>
<img src="https://forum.logicmachine.net/images/attachtypes/image.png" title="PNG Image" border="0" alt=".png" />
&nbsp;&nbsp;<a href="attachment.php?aid=5047" target="_blank">image_2026-06-24_130958622.png</a> (Size: 135.34 KB / Downloads: 31)</div>
<br />
<div>
<img src="https://forum.logicmachine.net/images/attachtypes/image.png" title="PNG Image" border="0" alt=".png" />
&nbsp;&nbsp;<a href="attachment.php?aid=5048" target="_blank">image_2026-06-24_131023845.png</a> (Size: 26.18 KB / Downloads: 31)</div>
]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Packages]]></title>
			<link>https://forum.logicmachine.net/showthread.php?tid=6484</link>
			<pubDate>Wed, 24 Jun 2026 11:01:12 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://forum.logicmachine.net/member.php?action=profile&uid=5871">Ahmed.K</a>]]></dc:creator>
			<guid isPermaLink="false">https://forum.logicmachine.net/showthread.php?tid=6484</guid>
			<description><![CDATA[Hello,<br />
I downloaded visu-20260618-2.ipk and tried to install it from System configuration → Packages → Add package on LogicMachine.<br />
However, the package upload window requires both:<br />
<ul class="mycode_list"><li>the package file<br />
</li>
<li>and a signature file<br />
</li>
</ul>
<br />
Could you please provide the matching signature file for visu-20260618-2.ipk , or confirm if there is another recommended installation method for this beta package?<br />
<br />
Thank you.<br />
<div>
<img src="https://forum.logicmachine.net/images/attachtypes/image.png" title="PNG Image" border="0" alt=".png" />
&nbsp;&nbsp;<a href="attachment.php?aid=5043" target="_blank">image_2026-06-24_120102568.png</a> (Size: 34.55 KB / Downloads: 32)</div>
]]></description>
			<content:encoded><![CDATA[Hello,<br />
I downloaded visu-20260618-2.ipk and tried to install it from System configuration → Packages → Add package on LogicMachine.<br />
However, the package upload window requires both:<br />
<ul class="mycode_list"><li>the package file<br />
</li>
<li>and a signature file<br />
</li>
</ul>
<br />
Could you please provide the matching signature file for visu-20260618-2.ipk , or confirm if there is another recommended installation method for this beta package?<br />
<br />
Thank you.<br />
<div>
<img src="https://forum.logicmachine.net/images/attachtypes/image.png" title="PNG Image" border="0" alt=".png" />
&nbsp;&nbsp;<a href="attachment.php?aid=5043" target="_blank">image_2026-06-24_120102568.png</a> (Size: 34.55 KB / Downloads: 32)</div>
]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Account access]]></title>
			<link>https://forum.logicmachine.net/showthread.php?tid=6483</link>
			<pubDate>Wed, 24 Jun 2026 10:21:43 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://forum.logicmachine.net/member.php?action=profile&uid=5871">Ahmed.K</a>]]></dc:creator>
			<guid isPermaLink="false">https://forum.logicmachine.net/showthread.php?tid=6483</guid>
			<description><![CDATA[Hello,<br />
I would like to configure different users in LogicMachine so that each login/account has access only to its own dedicated supervision page.<br />
My goal is to create multiple user accounts, where each user can log in and see only the visualization / supervision pages assigned to them.<br />
I have already installed and tried to use <span style="font-weight: bold;" class="mycode_b">User Access Control</span>, but unfortunately it is not working as expected, and I am not able to restrict each user to a specific supervision page.<br />
Could you please advise:<br />
<ol type="1" class="mycode_list"><li>Is it possible in LogicMachine to assign a different supervision page or visualization access depending on the user login?<br />
</li>
<li>What is the correct way to configure this using <span style="font-weight: bold;" class="mycode_b">User Access Control</span>?<br />
</li>
<li>Is there any additional configuration required in visualization, permissions, or user roles to make this work?<br />
</li>
</ol>
<br />
Thank you in advance for your support.]]></description>
			<content:encoded><![CDATA[Hello,<br />
I would like to configure different users in LogicMachine so that each login/account has access only to its own dedicated supervision page.<br />
My goal is to create multiple user accounts, where each user can log in and see only the visualization / supervision pages assigned to them.<br />
I have already installed and tried to use <span style="font-weight: bold;" class="mycode_b">User Access Control</span>, but unfortunately it is not working as expected, and I am not able to restrict each user to a specific supervision page.<br />
Could you please advise:<br />
<ol type="1" class="mycode_list"><li>Is it possible in LogicMachine to assign a different supervision page or visualization access depending on the user login?<br />
</li>
<li>What is the correct way to configure this using <span style="font-weight: bold;" class="mycode_b">User Access Control</span>?<br />
</li>
<li>Is there any additional configuration required in visualization, permissions, or user roles to make this work?<br />
</li>
</ol>
<br />
Thank you in advance for your support.]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[switch between Plan View and Tile View]]></title>
			<link>https://forum.logicmachine.net/showthread.php?tid=6481</link>
			<pubDate>Tue, 23 Jun 2026 12:28:08 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://forum.logicmachine.net/member.php?action=profile&uid=5871">Ahmed.K</a>]]></dc:creator>
			<guid isPermaLink="false">https://forum.logicmachine.net/showthread.php?tid=6481</guid>
			<description><![CDATA[Hello,<br />
I created the visualization project first in <span style="font-weight: bold;" class="mycode_b">Plan View</span>, and after finishing it I also created it in <span style="font-weight: bold;" class="mycode_b">Tile View</span>.<br />
I am facing two questions / issues:<br />
<ol type="1" class="mycode_list"><li>Even though both <span style="font-weight: bold;" class="mycode_b">Plan View</span> and <span style="font-weight: bold;" class="mycode_b">Tile View</span> are configured, the final display always opens in <span style="font-weight: bold;" class="mycode_b">Tile View</span>.<br />
Is there a way to choose which view is displayed by default?<br />
</li>
<li>I would also like to know if the visualization can switch <span style="font-weight: bold;" class="mycode_b">automatically depending on the tablet or phone orientation</span>:<ul class="mycode_list"><li><span style="font-weight: bold;" class="mycode_b">Tile View</span> when the device is in <span style="font-weight: bold;" class="mycode_b">portrait / vertical mode</span><br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Plan View</span> when the device is in <span style="font-weight: bold;" class="mycode_b">landscape / horizontal mode</span><br />
</li>
</ul>
</li>
</ol>
In other words, is it possible to automatically display the appropriate view depending on the screen orientation, without having to manually switch between views?<br />
If automatic switching is not possible, is there at least a way to add a button to switch between <span style="font-weight: bold;" class="mycode_b">Plan View</span> and <span style="font-weight: bold;" class="mycode_b">Tile View</span>?<br />
<br />
Thank you in advance for your support.]]></description>
			<content:encoded><![CDATA[Hello,<br />
I created the visualization project first in <span style="font-weight: bold;" class="mycode_b">Plan View</span>, and after finishing it I also created it in <span style="font-weight: bold;" class="mycode_b">Tile View</span>.<br />
I am facing two questions / issues:<br />
<ol type="1" class="mycode_list"><li>Even though both <span style="font-weight: bold;" class="mycode_b">Plan View</span> and <span style="font-weight: bold;" class="mycode_b">Tile View</span> are configured, the final display always opens in <span style="font-weight: bold;" class="mycode_b">Tile View</span>.<br />
Is there a way to choose which view is displayed by default?<br />
</li>
<li>I would also like to know if the visualization can switch <span style="font-weight: bold;" class="mycode_b">automatically depending on the tablet or phone orientation</span>:<ul class="mycode_list"><li><span style="font-weight: bold;" class="mycode_b">Tile View</span> when the device is in <span style="font-weight: bold;" class="mycode_b">portrait / vertical mode</span><br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Plan View</span> when the device is in <span style="font-weight: bold;" class="mycode_b">landscape / horizontal mode</span><br />
</li>
</ul>
</li>
</ol>
In other words, is it possible to automatically display the appropriate view depending on the screen orientation, without having to manually switch between views?<br />
If automatic switching is not possible, is there at least a way to add a button to switch between <span style="font-weight: bold;" class="mycode_b">Plan View</span> and <span style="font-weight: bold;" class="mycode_b">Tile View</span>?<br />
<br />
Thank you in advance for your support.]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[status display]]></title>
			<link>https://forum.logicmachine.net/showthread.php?tid=6478</link>
			<pubDate>Fri, 19 Jun 2026 09:15:55 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://forum.logicmachine.net/member.php?action=profile&uid=3896">Zoli</a>]]></dc:creator>
			<guid isPermaLink="false">https://forum.logicmachine.net/showthread.php?tid=6478</guid>
			<description><![CDATA[Hi,<br />
<br />
how can I display statuses, binary or integer? In mosaic had two options for this, "Value (text)" and "Value (icon)".<br />
<br />
Thanks!]]></description>
			<content:encoded><![CDATA[Hi,<br />
<br />
how can I display statuses, binary or integer? In mosaic had two options for this, "Value (text)" and "Value (icon)".<br />
<br />
Thanks!]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[VISU on narrowcasting]]></title>
			<link>https://forum.logicmachine.net/showthread.php?tid=6476</link>
			<pubDate>Wed, 17 Jun 2026 11:50:53 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://forum.logicmachine.net/member.php?action=profile&uid=1087">KoBra</a>]]></dc:creator>
			<guid isPermaLink="false">https://forum.logicmachine.net/showthread.php?tid=6476</guid>
			<description><![CDATA[Is it possible to access visu without credentials to use the webpage in narrowcasting?]]></description>
			<content:encoded><![CDATA[Is it possible to access visu without credentials to use the webpage in narrowcasting?]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Bug VISU]]></title>
			<link>https://forum.logicmachine.net/showthread.php?tid=6474</link>
			<pubDate>Tue, 16 Jun 2026 14:41:41 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://forum.logicmachine.net/member.php?action=profile&uid=2542">Kilogica</a>]]></dc:creator>
			<guid isPermaLink="false">https://forum.logicmachine.net/showthread.php?tid=6474</guid>
			<description><![CDATA[<div style="text-align: left;" class="mycode_align">I created several plans with VISU admin but when i go to the page in the photo for visualization, that error appears. Sometimes it works and sometimes it doesn't, how can I fix it?
<div>
<img src="https://forum.logicmachine.net/images/attachtypes/image.png" title="PNG Image" border="0" alt=".png" />
&nbsp;&nbsp;<a href="attachment.php?aid=5029" target="_blank">Screenshot 2026-06-16 162855.png</a> (Size: 27.56 KB / Downloads: 75)</div>
</div>]]></description>
			<content:encoded><![CDATA[<div style="text-align: left;" class="mycode_align">I created several plans with VISU admin but when i go to the page in the photo for visualization, that error appears. Sometimes it works and sometimes it doesn't, how can I fix it?
<div>
<img src="https://forum.logicmachine.net/images/attachtypes/image.png" title="PNG Image" border="0" alt=".png" />
&nbsp;&nbsp;<a href="attachment.php?aid=5029" target="_blank">Screenshot 2026-06-16 162855.png</a> (Size: 27.56 KB / Downloads: 75)</div>
</div>]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[sunrise]]></title>
			<link>https://forum.logicmachine.net/showthread.php?tid=6472</link>
			<pubDate>Mon, 15 Jun 2026 07:50:18 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://forum.logicmachine.net/member.php?action=profile&uid=3803">dezza@sdme.it</a>]]></dc:creator>
			<guid isPermaLink="false">https://forum.logicmachine.net/showthread.php?tid=6472</guid>
			<description><![CDATA[Good morning, is it possible to display the sunrise and sunset times?]]></description>
			<content:encoded><![CDATA[Good morning, is it possible to display the sunrise and sunset times?]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Last Visu Stable apk]]></title>
			<link>https://forum.logicmachine.net/showthread.php?tid=6470</link>
			<pubDate>Fri, 12 Jun 2026 12:19:17 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://forum.logicmachine.net/member.php?action=profile&uid=328">Domoticatorino</a>]]></dc:creator>
			<guid isPermaLink="false">https://forum.logicmachine.net/showthread.php?tid=6470</guid>
			<description><![CDATA[Hi,<br />
I am on a plant on which there is not internet connection. I have to update the Visu app.<br />
<br />
Where can I find file in order to update LM without internet?<br />
<br />
Thanks for your usual help.<br />
<br />
BR]]></description>
			<content:encoded><![CDATA[Hi,<br />
I am on a plant on which there is not internet connection. I have to update the Visu app.<br />
<br />
Where can I find file in order to update LM without internet?<br />
<br />
Thanks for your usual help.<br />
<br />
BR]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Width based scaling plan / Visu Plan view]]></title>
			<link>https://forum.logicmachine.net/showthread.php?tid=6467</link>
			<pubDate>Thu, 11 Jun 2026 18:50:44 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://forum.logicmachine.net/member.php?action=profile&uid=4312">_BG_</a>]]></dc:creator>
			<guid isPermaLink="false">https://forum.logicmachine.net/showthread.php?tid=6467</guid>
			<description><![CDATA[Hi everyone,<br />
<br />
I have a question regarding the new Visu environment.<br />
<br />
I'm currently building a Visu Plan view control panel (not Tile view) for hotel room automation. There will be many rooms, each with its own Visu Plan view. The interface will be used on mobile phones with different screen sizes and resolutions.<br />
<br />
Since the panel needs to be <span style="font-weight: bold;" class="mycode_b">scrollable vertically</span>, I'm using non-standard plan dimensions (for example 1080x2900px), to fit all the necessary controls in a single plan.<br />
<br />
Currently the interface seems to scale to screen height, not screen width.<br />
<br />
Is there a way to achieve width-based scaling in the new Visu? <br />
<br />
Don't I see any settings parameter to set?<br />
Or JS/CSS is needed in this situation?<br />
<br />
Thanks in advance!<br />
BG<br />
<div>
<img src="https://forum.logicmachine.net/images/attachtypes/image.png" title="PNG Image" border="0" alt=".png" />
&nbsp;&nbsp;<a href="attachment.php?aid=5017" target="_blank">Zrzut ekranu 2026-06-11 204552.png</a> (Size: 18.48 KB / Downloads: 94)</div>
]]></description>
			<content:encoded><![CDATA[Hi everyone,<br />
<br />
I have a question regarding the new Visu environment.<br />
<br />
I'm currently building a Visu Plan view control panel (not Tile view) for hotel room automation. There will be many rooms, each with its own Visu Plan view. The interface will be used on mobile phones with different screen sizes and resolutions.<br />
<br />
Since the panel needs to be <span style="font-weight: bold;" class="mycode_b">scrollable vertically</span>, I'm using non-standard plan dimensions (for example 1080x2900px), to fit all the necessary controls in a single plan.<br />
<br />
Currently the interface seems to scale to screen height, not screen width.<br />
<br />
Is there a way to achieve width-based scaling in the new Visu? <br />
<br />
Don't I see any settings parameter to set?<br />
Or JS/CSS is needed in this situation?<br />
<br />
Thanks in advance!<br />
BG<br />
<div>
<img src="https://forum.logicmachine.net/images/attachtypes/image.png" title="PNG Image" border="0" alt=".png" />
&nbsp;&nbsp;<a href="attachment.php?aid=5017" target="_blank">Zrzut ekranu 2026-06-11 204552.png</a> (Size: 18.48 KB / Downloads: 94)</div>
]]></content:encoded>
		</item>
	</channel>
</rss>