<?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 - Application Store]]></title>
		<link>https://forum.logicmachine.net/</link>
		<description><![CDATA[LogicMachine Forum - https://forum.logicmachine.net]]></description>
		<pubDate>Tue, 14 Apr 2026 06:01:57 +0000</pubDate>
		<generator>MyBB</generator>
		<item>
			<title><![CDATA[Custom Application Files Not Included in Backup (config.json)]]></title>
			<link>https://forum.logicmachine.net/showthread.php?tid=6371</link>
			<pubDate>Fri, 27 Mar 2026 13:22:48 +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=6371</guid>
			<description><![CDATA[Hello,<br />
We have developed a custom application for Logic Machine, and our file structure is as follows:<ul class="mycode_list"><li><span style="font-weight: bold;" class="mycode_b">/cron/our_app/</span><ul class="mycode_list"><li>hourly.lua <br />
</li>
<li>hourly.sh <br />
</li>
</ul>
</li>
<li><span style="font-weight: bold;" class="mycode_b">/data/our_app/</span><ul class="mycode_list"><li>index.lp <br />
</li>
<li>icon.png <br />
</li>
<li>config.json <br />
</li>
</ul>
</li>
<li><span style="font-weight: bold;" class="mycode_b">/libs/our_app/</span><ul class="mycode_list"><li>(two Lua library files) <br />
</li>
</ul>
</li>
</ul>
In our application, project-specific data is stored inside the <span style="font-weight: bold;" class="mycode_b">config.json</span> file located in the <span style="font-weight: bold;" class="mycode_b">/data/our_app/</span> directory.<br />
However, when we perform a full Logic Machine backup, none of our application-related data is included in the backup. Specifically, the <span style="font-weight: bold;" class="mycode_b">config.json</span> file is not backed up.<br />
What do we need to do to ensure that this <span style="font-weight: bold;" class="mycode_b">config.json</span> file is included in the backup?<br />
Thank you.]]></description>
			<content:encoded><![CDATA[Hello,<br />
We have developed a custom application for Logic Machine, and our file structure is as follows:<ul class="mycode_list"><li><span style="font-weight: bold;" class="mycode_b">/cron/our_app/</span><ul class="mycode_list"><li>hourly.lua <br />
</li>
<li>hourly.sh <br />
</li>
</ul>
</li>
<li><span style="font-weight: bold;" class="mycode_b">/data/our_app/</span><ul class="mycode_list"><li>index.lp <br />
</li>
<li>icon.png <br />
</li>
<li>config.json <br />
</li>
</ul>
</li>
<li><span style="font-weight: bold;" class="mycode_b">/libs/our_app/</span><ul class="mycode_list"><li>(two Lua library files) <br />
</li>
</ul>
</li>
</ul>
In our application, project-specific data is stored inside the <span style="font-weight: bold;" class="mycode_b">config.json</span> file located in the <span style="font-weight: bold;" class="mycode_b">/data/our_app/</span> directory.<br />
However, when we perform a full Logic Machine backup, none of our application-related data is included in the backup. Specifically, the <span style="font-weight: bold;" class="mycode_b">config.json</span> file is not backed up.<br />
What do we need to do to ensure that this <span style="font-weight: bold;" class="mycode_b">config.json</span> file is included in the backup?<br />
Thank you.]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[email via application]]></title>
			<link>https://forum.logicmachine.net/showthread.php?tid=6362</link>
			<pubDate>Tue, 24 Mar 2026 23:09:48 +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=6362</guid>
			<description><![CDATA[Hello, one of the features of the application we are developing is to periodically send an email with a CSV report attached. We implemented this using a script, and it works very successfully.<br />
However, when we tried to embed this functionality into the application's index.lp file, we were unable to send even a plain email, let alone one with an attachment. This is the same Logic Machine where the email works perfectly fine via scripts.<br />
I am sharing the working script below. How can we properly integrate this into the application?<br />
<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>--Gmail (smtp) username<br />
user = '***@gmail.com'<br />
<br />
--Gmail (smtp) password<br />
password = '***'<br />
<br />
--From<br />
from = '&lt;' .. user .. '&gt;'<br />
alias_from = 'gonderenhesap@gmail.com'<br />
<br />
--REceiver<br />
to = '***@***.com'<br />
alias_to = '***@***.com'<br />
<br />
--Email subject<br />
subjectpart1 = 'Alarmlar'<br />
subjectpart2 = 'Logic Machine Tarafindan Gonderildi'<br />
<br />
--Message<br />
epilogue = 'Mesajin sonu'<br />
<br />
-- Get all alerts from DB<br />
alerts_table = db:getall('SELECT * FROM alerts')<br />
<br />
-- csv buffer<br />
buffer = {}<br />
-- format csv row<br />
csv = string.format('%q,%q,%q', "ID", "ALERT", "ADDED TO LIST")<br />
-- add to buffer<br />
table.insert(buffer, csv)<br />
-- add empty line to buffer<br />
table.insert(buffer, "")<br />
<br />
-- Loop through alerts_table<br />
for _, alerts in ipairs(alerts_table) do<br />
<br />
  -- format csv row<br />
  csv = string.format('%q,%q,%q', alerts.id, alerts.alert, os.date("%x %X", alerts.alerttime))<br />
  -- add to buffer<br />
  table.insert(buffer, csv)<br />
end<br />
<br />
--Create table to include mail settings<br />
local settings = {<br />
    from = from,<br />
    rcpt = to,<br />
    user = user,<br />
    password = password,<br />
    server = 'smtp.gmail.com',<br />
    port = 465,<br />
    secure = 'sslv23',<br />
}<br />
<br />
--Create attachment inside FTP server<br />
src = 'AlertExport_'.. os.date('%Y-%m-%d %H#%M#%S') .. '.csv'<br />
dst = '/home/ftp/' .. src<br />
log(io.writefile(dst, buffer))<br />
log("file created")<br />
log(dst)<br />
--Create subject<br />
subject = subjectpart1 .. ": " .. src .. " " .. subjectpart2<br />
<br />
--Load required modules to send email with attachment<br />
local smtp = require("socket.smtp")<br />
local mime = require("mime")<br />
local ltn12 = require("ltn12")<br />
--Create e-mail header<br />
settings.source = smtp.message{<br />
headers = {<br />
          from = '' .. alias_from .. ' ' .. from .. '',<br />
          to = '' .. alias_to .. ' ' .. to .. '',<br />
          subject = subject<br />
},<br />
--Load attachment inside body    <br />
body = {<br />
preamble = "",<br />
[1] = {  <br />
        headers = {<br />
          ["content-type"] = 'text/plain',<br />
          ["content-disposition"] = 'attachment; filename="'..src..'"',<br />
          ["content-description"] = '.. src ..',<br />
          ["content-transfer-encoding"] = "BASE64",<br />
        }, <br />
        body = ltn12.source.chain(<br />
          ltn12.source.file(io.open(dst, "rb")),<br />
          ltn12.filter.chain(<br />
          mime.encode("base64"),<br />
          mime.wrap()<br />
        )<br />
      )<br />
    },<br />
      epilogue = epilogue<br />
  }<br />
}<br />
<br />
--Send the email<br />
r, e = smtp.send(settings)<br />
<br />
--Create alert when sending gives an error with error message<br />
if (e) then<br />
  log (e)<br />
  log (r)<br />
end<br />
<br />
-- FTP Uploader --------------------------------------------------------------------------<br />
-- local ftp = require("socket.ftp")<br />
-- local ltn12 = require("ltn12")<br />
<br />
<br />
-- f, e = ftp.put{<br />
--  host = "ftp.test.tv.tr", <br />
--  user = "fgtest@test.tv.tr",<br />
--  password = «ftpsifresi",<br />
--  command = "appe",<br />
--  argument = src,<br />
--  source = ltn12.source.file(io.open(dst, "r"))<br />
-- }<br />
<br />
--Delete created file from ftp folder inside HL<br />
os.remove(dst)</code></div></div>]]></description>
			<content:encoded><![CDATA[Hello, one of the features of the application we are developing is to periodically send an email with a CSV report attached. We implemented this using a script, and it works very successfully.<br />
However, when we tried to embed this functionality into the application's index.lp file, we were unable to send even a plain email, let alone one with an attachment. This is the same Logic Machine where the email works perfectly fine via scripts.<br />
I am sharing the working script below. How can we properly integrate this into the application?<br />
<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>--Gmail (smtp) username<br />
user = '***@gmail.com'<br />
<br />
--Gmail (smtp) password<br />
password = '***'<br />
<br />
--From<br />
from = '&lt;' .. user .. '&gt;'<br />
alias_from = 'gonderenhesap@gmail.com'<br />
<br />
--REceiver<br />
to = '***@***.com'<br />
alias_to = '***@***.com'<br />
<br />
--Email subject<br />
subjectpart1 = 'Alarmlar'<br />
subjectpart2 = 'Logic Machine Tarafindan Gonderildi'<br />
<br />
--Message<br />
epilogue = 'Mesajin sonu'<br />
<br />
-- Get all alerts from DB<br />
alerts_table = db:getall('SELECT * FROM alerts')<br />
<br />
-- csv buffer<br />
buffer = {}<br />
-- format csv row<br />
csv = string.format('%q,%q,%q', "ID", "ALERT", "ADDED TO LIST")<br />
-- add to buffer<br />
table.insert(buffer, csv)<br />
-- add empty line to buffer<br />
table.insert(buffer, "")<br />
<br />
-- Loop through alerts_table<br />
for _, alerts in ipairs(alerts_table) do<br />
<br />
  -- format csv row<br />
  csv = string.format('%q,%q,%q', alerts.id, alerts.alert, os.date("%x %X", alerts.alerttime))<br />
  -- add to buffer<br />
  table.insert(buffer, csv)<br />
end<br />
<br />
--Create table to include mail settings<br />
local settings = {<br />
    from = from,<br />
    rcpt = to,<br />
    user = user,<br />
    password = password,<br />
    server = 'smtp.gmail.com',<br />
    port = 465,<br />
    secure = 'sslv23',<br />
}<br />
<br />
--Create attachment inside FTP server<br />
src = 'AlertExport_'.. os.date('%Y-%m-%d %H#%M#%S') .. '.csv'<br />
dst = '/home/ftp/' .. src<br />
log(io.writefile(dst, buffer))<br />
log("file created")<br />
log(dst)<br />
--Create subject<br />
subject = subjectpart1 .. ": " .. src .. " " .. subjectpart2<br />
<br />
--Load required modules to send email with attachment<br />
local smtp = require("socket.smtp")<br />
local mime = require("mime")<br />
local ltn12 = require("ltn12")<br />
--Create e-mail header<br />
settings.source = smtp.message{<br />
headers = {<br />
          from = '' .. alias_from .. ' ' .. from .. '',<br />
          to = '' .. alias_to .. ' ' .. to .. '',<br />
          subject = subject<br />
},<br />
--Load attachment inside body    <br />
body = {<br />
preamble = "",<br />
[1] = {  <br />
        headers = {<br />
          ["content-type"] = 'text/plain',<br />
          ["content-disposition"] = 'attachment; filename="'..src..'"',<br />
          ["content-description"] = '.. src ..',<br />
          ["content-transfer-encoding"] = "BASE64",<br />
        }, <br />
        body = ltn12.source.chain(<br />
          ltn12.source.file(io.open(dst, "rb")),<br />
          ltn12.filter.chain(<br />
          mime.encode("base64"),<br />
          mime.wrap()<br />
        )<br />
      )<br />
    },<br />
      epilogue = epilogue<br />
  }<br />
}<br />
<br />
--Send the email<br />
r, e = smtp.send(settings)<br />
<br />
--Create alert when sending gives an error with error message<br />
if (e) then<br />
  log (e)<br />
  log (r)<br />
end<br />
<br />
-- FTP Uploader --------------------------------------------------------------------------<br />
-- local ftp = require("socket.ftp")<br />
-- local ltn12 = require("ltn12")<br />
<br />
<br />
-- f, e = ftp.put{<br />
--  host = "ftp.test.tv.tr", <br />
--  user = "fgtest@test.tv.tr",<br />
--  password = «ftpsifresi",<br />
--  command = "appe",<br />
--  argument = src,<br />
--  source = ltn12.source.file(io.open(dst, "r"))<br />
-- }<br />
<br />
--Delete created file from ftp folder inside HL<br />
os.remove(dst)</code></div></div>]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Backup of FB editor]]></title>
			<link>https://forum.logicmachine.net/showthread.php?tid=6359</link>
			<pubDate>Fri, 20 Mar 2026 08:26:59 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://forum.logicmachine.net/member.php?action=profile&uid=5127">Davideq</a>]]></dc:creator>
			<guid isPermaLink="false">https://forum.logicmachine.net/showthread.php?tid=6359</guid>
			<description><![CDATA[Hello there,<br />
What is the way to backup all the logic diagrams from FB editor?<br />
BR.<br />
Dawid]]></description>
			<content:encoded><![CDATA[Hello there,<br />
What is the way to backup all the logic diagrams from FB editor?<br />
BR.<br />
Dawid]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[How to prevent FTP access to application files (like default Logic Machine apps)?]]></title>
			<link>https://forum.logicmachine.net/showthread.php?tid=6353</link>
			<pubDate>Mon, 16 Mar 2026 13:00:03 +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=6353</guid>
			<description><![CDATA[Hello,<br />
When connecting to Logic Machine via FTP, I noticed that the built-in applications inside the <span style="font-weight: bold;" class="mycode_b">/data</span> directory (for example <span style="font-weight: bold;" class="mycode_b">LM Cloud</span>) cannot be opened or browsed. FTP does not allow entering those folders.<br />
However, for the applications that we develop ourselves and install using <span style="font-weight: bold;" class="mycode_b">.ipk packages</span>, the entire application folder is visible via FTP and it is possible to access all files inside the directory.<br />
We would like our application to be protected in the same way as the default Logic Machine applications, so that the contents cannot be accessed or browsed via FTP.<br />
Is there a way to package or configure our application so that the folder is protected and FTP access to its contents is prevented, similar to the built-in Logic Machine apps?<br />
Thank you.]]></description>
			<content:encoded><![CDATA[Hello,<br />
When connecting to Logic Machine via FTP, I noticed that the built-in applications inside the <span style="font-weight: bold;" class="mycode_b">/data</span> directory (for example <span style="font-weight: bold;" class="mycode_b">LM Cloud</span>) cannot be opened or browsed. FTP does not allow entering those folders.<br />
However, for the applications that we develop ourselves and install using <span style="font-weight: bold;" class="mycode_b">.ipk packages</span>, the entire application folder is visible via FTP and it is possible to access all files inside the directory.<br />
We would like our application to be protected in the same way as the default Logic Machine applications, so that the contents cannot be accessed or browsed via FTP.<br />
Is there a way to package or configure our application so that the folder is protected and FTP access to its contents is prevented, similar to the built-in Logic Machine apps?<br />
Thank you.]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[BACnet Client Package]]></title>
			<link>https://forum.logicmachine.net/showthread.php?tid=6343</link>
			<pubDate>Wed, 11 Mar 2026 14:40:45 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://forum.logicmachine.net/member.php?action=profile&uid=4951">xxyzz</a>]]></dc:creator>
			<guid isPermaLink="false">https://forum.logicmachine.net/showthread.php?tid=6343</guid>
			<description><![CDATA[Hi, Where can I download the BACnet Client package requiered in this manual -&gt; <a href="https://kb.logicmachine.net/libraries/bacnet-client/#read-using-direct-connection-mode" target="_blank" rel="noopener" class="mycode_url">https://kb.logicmachine.net/libraries/ba...ction-mode</a> ?<br />
<br />
I know I had it once but I can't seem to find it. <br />
<br />
Sorry for the inconvinience and thanks for the support.<br />
<br />
Cheers]]></description>
			<content:encoded><![CDATA[Hi, Where can I download the BACnet Client package requiered in this manual -&gt; <a href="https://kb.logicmachine.net/libraries/bacnet-client/#read-using-direct-connection-mode" target="_blank" rel="noopener" class="mycode_url">https://kb.logicmachine.net/libraries/ba...ction-mode</a> ?<br />
<br />
I know I had it once but I can't seem to find it. <br />
<br />
Sorry for the inconvinience and thanks for the support.<br />
<br />
Cheers]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Alert Manager app]]></title>
			<link>https://forum.logicmachine.net/showthread.php?tid=6342</link>
			<pubDate>Wed, 11 Mar 2026 13:21:29 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://forum.logicmachine.net/member.php?action=profile&uid=609">gdimaria</a>]]></dc:creator>
			<guid isPermaLink="false">https://forum.logicmachine.net/showthread.php?tid=6342</guid>
			<description><![CDATA[hi!<br />
<br />
<br />
I need to record and, if necessary, export the alarms reported by Alert Manager. <br />
<br />
I also need to know who (logged user) silenced the alarm and when.<br />
<br />
Is there a way to do this?<br />
<br />
Thanks in advance<br />
<br />
Peppe]]></description>
			<content:encoded><![CDATA[hi!<br />
<br />
<br />
I need to record and, if necessary, export the alarms reported by Alert Manager. <br />
<br />
I also need to know who (logged user) silenced the alarm and when.<br />
<br />
Is there a way to do this?<br />
<br />
Thanks in advance<br />
<br />
Peppe]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[apple Home kit  not adding accessory]]></title>
			<link>https://forum.logicmachine.net/showthread.php?tid=6313</link>
			<pubDate>Wed, 18 Feb 2026 07:38:49 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://forum.logicmachine.net/member.php?action=profile&uid=4274">Ranjeet</a>]]></dc:creator>
			<guid isPermaLink="false">https://forum.logicmachine.net/showthread.php?tid=6313</guid>
			<description><![CDATA[hi sir<br />
<br />
we are having issue with apple home in that when we scan QR code for adding our object or accessory to home it is not adding. Only<br />
 loading so what could be issue with that]]></description>
			<content:encoded><![CDATA[hi sir<br />
<br />
we are having issue with apple home in that when we scan QR code for adding our object or accessory to home it is not adding. Only<br />
 loading so what could be issue with that]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Weather app]]></title>
			<link>https://forum.logicmachine.net/showthread.php?tid=6308</link>
			<pubDate>Tue, 17 Feb 2026 10:23:21 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://forum.logicmachine.net/member.php?action=profile&uid=696">Daniel</a>]]></dc:creator>
			<guid isPermaLink="false">https://forum.logicmachine.net/showthread.php?tid=6308</guid>
			<description><![CDATA[New Weather app for testing. <br />
<br />
It is very simple, just define coordinates and select or create new objects. Values can be updated instantly by pressing the Save and update weather button. The weather will be updated once every hour. Objects are updated on change of value.<br />
<div>
<img src="https://forum.logicmachine.net/images/attachtypes/zip.png" title="IPK file" border="0" alt=".ipk" />
&nbsp;&nbsp;<a href="attachment.php?aid=4803" target="_blank">weather-20260217.ipk</a> (Size: 179.39 KB / Downloads: 69)</div>
]]></description>
			<content:encoded><![CDATA[New Weather app for testing. <br />
<br />
It is very simple, just define coordinates and select or create new objects. Values can be updated instantly by pressing the Save and update weather button. The weather will be updated once every hour. Objects are updated on change of value.<br />
<div>
<img src="https://forum.logicmachine.net/images/attachtypes/zip.png" title="IPK file" border="0" alt=".ipk" />
&nbsp;&nbsp;<a href="attachment.php?aid=4803" target="_blank">weather-20260217.ipk</a> (Size: 179.39 KB / Downloads: 69)</div>
]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Logic Machine Skill not Showing in Alexa Account]]></title>
			<link>https://forum.logicmachine.net/showthread.php?tid=6309</link>
			<pubDate>Tue, 17 Feb 2026 09:48:40 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://forum.logicmachine.net/member.php?action=profile&uid=4274">Ranjeet</a>]]></dc:creator>
			<guid isPermaLink="false">https://forum.logicmachine.net/showthread.php?tid=6309</guid>
			<description><![CDATA[I have successfully installed and configured the LogicMachine Alexa skill, but it is not appearing in my Alexa account. I have tried linking the skill, but it does not show up under my enabled skills list.<br />
Could you please advise what might be causing this issue?<ul class="mycode_list"><li>Do I need to change my Alexa account region (e.g., India vs. US)?<br />
</li>
<li>Is there any additional configuration required on the LogicMachine side (apps, MQTT, or cloud settings)?<br />
</li>
</ul>
]]></description>
			<content:encoded><![CDATA[I have successfully installed and configured the LogicMachine Alexa skill, but it is not appearing in my Alexa account. I have tried linking the skill, but it does not show up under my enabled skills list.<br />
Could you please advise what might be causing this issue?<ul class="mycode_list"><li>Do I need to change my Alexa account region (e.g., India vs. US)?<br />
</li>
<li>Is there any additional configuration required on the LogicMachine side (apps, MQTT, or cloud settings)?<br />
</li>
</ul>
]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Wiser App - Devices visible]]></title>
			<link>https://forum.logicmachine.net/showthread.php?tid=6295</link>
			<pubDate>Wed, 04 Feb 2026 15:19:28 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://forum.logicmachine.net/member.php?action=profile&uid=3061">Nir70</a>]]></dc:creator>
			<guid isPermaLink="false">https://forum.logicmachine.net/showthread.php?tid=6295</guid>
			<description><![CDATA[Hi<br />
<br />
I’m using the <span style="font-weight: bold;" class="mycode_b">Wiser by Schneider Electric</span> system and I'm facing a frustrating sync issue.<br />
<span style="font-weight: bold;" class="mycode_b">The Problem:</span> When I access the system via the web interface on my PC, I can see all my devices and rooms (Salon, Kitchen, Bedroom, etc.) functioning perfectly. However, in the <span style="font-weight: bold;" class="mycode_b">Wiser Mobile App</span>, in same rooms appear completely empty with the message: "Your Room is looking quite empty...".<br />
<br />
thanks  <img src="https://forum.logicmachine.net/images/smilies/smile.png" alt="Smile" title="Smile" class="smilie smilie_1" />]]></description>
			<content:encoded><![CDATA[Hi<br />
<br />
I’m using the <span style="font-weight: bold;" class="mycode_b">Wiser by Schneider Electric</span> system and I'm facing a frustrating sync issue.<br />
<span style="font-weight: bold;" class="mycode_b">The Problem:</span> When I access the system via the web interface on my PC, I can see all my devices and rooms (Salon, Kitchen, Bedroom, etc.) functioning perfectly. However, in the <span style="font-weight: bold;" class="mycode_b">Wiser Mobile App</span>, in same rooms appear completely empty with the message: "Your Room is looking quite empty...".<br />
<br />
thanks  <img src="https://forum.logicmachine.net/images/smilies/smile.png" alt="Smile" title="Smile" class="smilie smilie_1" />]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[RTSP Camera Streaming APP]]></title>
			<link>https://forum.logicmachine.net/showthread.php?tid=6271</link>
			<pubDate>Mon, 26 Jan 2026 04:58:11 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://forum.logicmachine.net/member.php?action=profile&uid=1899">Diggerz</a>]]></dc:creator>
			<guid isPermaLink="false">https://forum.logicmachine.net/showthread.php?tid=6271</guid>
			<description><![CDATA[<span style="color: #141414;" class="mycode_color">Hi, Im looking for a little feedback on how people are currently viewing and displaying camera streams and if the following would be of use?</span><br />
<br />
<span style="color: #141414;" class="mycode_color">I've begun developing an app to natively support viewing RTSP streams on the logicmachine / spacelynk Wiser4KNX / c-bus 5500AC2.</span><br />
<br />
<span style="color: #141414;" class="mycode_color">Previously i had been using a raspberry pi to handle the RTSP streams from my Hikvision NVR for viewing on the 5500AC2, but ideally I've wanted to have a self hosted option to simplify things and do away with the pi and also the http/https mixed content and cross origin work arounds.</span><br />
<br />
<span style="color: #141414;" class="mycode_color">After trialing a few different methods, i finally have one i think I'm happy with that runs totally on the logicmachine / spacelynk Wiser4KNX / c-bus 5500AC2 . No Pi or 3rd party proxy required, just a h.264 rtsp url from the camera or nvr.</span><br />
<br />
<span style="color: #141414;" class="mycode_color">My current testing is with 9 streams from the camera/NVR's secondary stream set as 720P(705 x 576), bitrate constant, 512kbps, 15FPS, h.264, iframe interval 30. While testing i had 3 clients simultaneously viewing all 9 streams at once ( browser, iPhone and tablet ), this was about the limit of the CPU. Generally this would be ok as the streams are only processed on demand, not constantly. so if there is only 1 or 2 clients simultaneously viewing all 9 streams periodically its ok, but to be safe i have scaled back the page to viewing 4 streams at once, clicking a stream will open it in full screen, and each card has a "Copy URL" button so the stream url can be coppied and used within the visu via web url iframe.</span><br />
<br />
The Main limiting factor is the CPU usage, its possible to display 1 or 2 high quality streams on 1 page ( 4MP or 6MP ) but any more displayed at once on the same page severly impacts the processor, the sweet spot is 4 streams at 720P which generally looks fine on a mobile or ipad anyway. <br />
<br />
<span style="color: #141414;" class="mycode_color">So far i have only tested with Hikvision H.264 Streams.<br />
</span> <br />
Curious to hear what others think and if there is any value in developing further or if there are already better ways of doing this locally on the device that i may have overlooked?<br />
<br />
<span style="color: #141414;" class="mycode_color">Quick Video Demo and Pics Below:<br />
</span><br />
<a href="https://www.dropbox.com/scl/fi/mi4lkohgmm3ck6e2y8i4d/Cam-Streaming-App_2.mp4?rlkey=tb8ifb4tue16yh9gosw6d7m80&amp;st=fsgpdh85&amp;dl=0" target="_blank" rel="noopener" class="mycode_url">https://www.dropbox.com/scl/fi/mi4lkohgm...pdh85&amp;dl=0</a><br />
<br />
<img src="https://www.cbusforums.com/attachments/screenshot-2026-01-02-125456-png.3487/" loading="lazy"  alt="[Image: screenshot-2026-01-02-125456-png.3487]" class="mycode_img" /><span style="color: #141414;" class="mycode_color">  <img src="https://www.cbusforums.com/attachments/screenshot-2026-01-04-151851-jpg.3495/" loading="lazy"  alt="[Image: screenshot-2026-01-04-151851-jpg.3495]" class="mycode_img" /><br />
 <img src="https://www.cbusforums.com/attachments/screenshot-2026-01-04-151906-png.3494/" loading="lazy"  alt="[Image: screenshot-2026-01-04-151906-png.3494]" class="mycode_img" /> </span>]]></description>
			<content:encoded><![CDATA[<span style="color: #141414;" class="mycode_color">Hi, Im looking for a little feedback on how people are currently viewing and displaying camera streams and if the following would be of use?</span><br />
<br />
<span style="color: #141414;" class="mycode_color">I've begun developing an app to natively support viewing RTSP streams on the logicmachine / spacelynk Wiser4KNX / c-bus 5500AC2.</span><br />
<br />
<span style="color: #141414;" class="mycode_color">Previously i had been using a raspberry pi to handle the RTSP streams from my Hikvision NVR for viewing on the 5500AC2, but ideally I've wanted to have a self hosted option to simplify things and do away with the pi and also the http/https mixed content and cross origin work arounds.</span><br />
<br />
<span style="color: #141414;" class="mycode_color">After trialing a few different methods, i finally have one i think I'm happy with that runs totally on the logicmachine / spacelynk Wiser4KNX / c-bus 5500AC2 . No Pi or 3rd party proxy required, just a h.264 rtsp url from the camera or nvr.</span><br />
<br />
<span style="color: #141414;" class="mycode_color">My current testing is with 9 streams from the camera/NVR's secondary stream set as 720P(705 x 576), bitrate constant, 512kbps, 15FPS, h.264, iframe interval 30. While testing i had 3 clients simultaneously viewing all 9 streams at once ( browser, iPhone and tablet ), this was about the limit of the CPU. Generally this would be ok as the streams are only processed on demand, not constantly. so if there is only 1 or 2 clients simultaneously viewing all 9 streams periodically its ok, but to be safe i have scaled back the page to viewing 4 streams at once, clicking a stream will open it in full screen, and each card has a "Copy URL" button so the stream url can be coppied and used within the visu via web url iframe.</span><br />
<br />
The Main limiting factor is the CPU usage, its possible to display 1 or 2 high quality streams on 1 page ( 4MP or 6MP ) but any more displayed at once on the same page severly impacts the processor, the sweet spot is 4 streams at 720P which generally looks fine on a mobile or ipad anyway. <br />
<br />
<span style="color: #141414;" class="mycode_color">So far i have only tested with Hikvision H.264 Streams.<br />
</span> <br />
Curious to hear what others think and if there is any value in developing further or if there are already better ways of doing this locally on the device that i may have overlooked?<br />
<br />
<span style="color: #141414;" class="mycode_color">Quick Video Demo and Pics Below:<br />
</span><br />
<a href="https://www.dropbox.com/scl/fi/mi4lkohgmm3ck6e2y8i4d/Cam-Streaming-App_2.mp4?rlkey=tb8ifb4tue16yh9gosw6d7m80&amp;st=fsgpdh85&amp;dl=0" target="_blank" rel="noopener" class="mycode_url">https://www.dropbox.com/scl/fi/mi4lkohgm...pdh85&amp;dl=0</a><br />
<br />
<img src="https://www.cbusforums.com/attachments/screenshot-2026-01-02-125456-png.3487/" loading="lazy"  alt="[Image: screenshot-2026-01-02-125456-png.3487]" class="mycode_img" /><span style="color: #141414;" class="mycode_color">  <img src="https://www.cbusforums.com/attachments/screenshot-2026-01-04-151851-jpg.3495/" loading="lazy"  alt="[Image: screenshot-2026-01-04-151851-jpg.3495]" class="mycode_img" /><br />
 <img src="https://www.cbusforums.com/attachments/screenshot-2026-01-04-151906-png.3494/" loading="lazy"  alt="[Image: screenshot-2026-01-04-151906-png.3494]" class="mycode_img" /> </span>]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Custom app]]></title>
			<link>https://forum.logicmachine.net/showthread.php?tid=6265</link>
			<pubDate>Thu, 22 Jan 2026 14:57:16 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://forum.logicmachine.net/member.php?action=profile&uid=3465">Novodk</a>]]></dc:creator>
			<guid isPermaLink="false">https://forum.logicmachine.net/showthread.php?tid=6265</guid>
			<description><![CDATA[I'm trying to develop a custom app.<br />
I have a list of all objects, but I would like to be able to "filter" off some of the "Object name"  specifikt the "Main group" and "Middle group" name.<br />
<br />
Like 2 check boxes 1 for "Main group name" and 1 for "Middle group name".<br />
<br />
Example object name:<br />
<br />
Building 1 - Floor 1 - 05/7 Main light t/s<br />
<br />
If you uncheck  "Main group name" it would show:<br />
<br />
Floor 1 - 05/7 Main light t/s<br />
<br />
and if you uncheck both "Main group name" and  "Middle group name" it would show:<br />
<br />
05/7 Main light t/s<br />
<br />
Is this possible?]]></description>
			<content:encoded><![CDATA[I'm trying to develop a custom app.<br />
I have a list of all objects, but I would like to be able to "filter" off some of the "Object name"  specifikt the "Main group" and "Middle group" name.<br />
<br />
Like 2 check boxes 1 for "Main group name" and 1 for "Middle group name".<br />
<br />
Example object name:<br />
<br />
Building 1 - Floor 1 - 05/7 Main light t/s<br />
<br />
If you uncheck  "Main group name" it would show:<br />
<br />
Floor 1 - 05/7 Main light t/s<br />
<br />
and if you uncheck both "Main group name" and  "Middle group name" it would show:<br />
<br />
05/7 Main light t/s<br />
<br />
Is this possible?]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Apple User]]></title>
			<link>https://forum.logicmachine.net/showthread.php?tid=6264</link>
			<pubDate>Thu, 22 Jan 2026 09:15:00 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://forum.logicmachine.net/member.php?action=profile&uid=1874">Deltec_Jeff</a>]]></dc:creator>
			<guid isPermaLink="false">https://forum.logicmachine.net/showthread.php?tid=6264</guid>
			<description><![CDATA[Hi team,<br />
<br />
My client using Apple phone, he can access cloud to do control and set timing but he cannot do add new event on scheduler.<br />
<br />
Now he using Iphone 16Pro.<br />
<br />
From Jeff-Deltec]]></description>
			<content:encoded><![CDATA[Hi team,<br />
<br />
My client using Apple phone, he can access cloud to do control and set timing but he cannot do add new event on scheduler.<br />
<br />
Now he using Iphone 16Pro.<br />
<br />
From Jeff-Deltec]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Push notifications on LM5 Lite – PP Push Notification no longer available]]></title>
			<link>https://forum.logicmachine.net/showthread.php?tid=6256</link>
			<pubDate>Thu, 15 Jan 2026 20:10:47 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://forum.logicmachine.net/member.php?action=profile&uid=5257">Luconi</a>]]></dc:creator>
			<guid isPermaLink="false">https://forum.logicmachine.net/showthread.php?tid=6256</guid>
			<description><![CDATA[Hello everyone,<br />
I recently purchased new Logic Machine devices with the following specifications:<ul class="mycode_list"><li><span style="font-weight: bold;" class="mycode_b">HW:</span> LM5 Lite (i.MX6)<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">SW:</span> 20240426<br />
</li>
</ul>
On older Logic Machine models, I used the <span style="font-weight: bold;" class="mycode_b">PP Push Notification</span> app to receive alert messages on my mobile phone, triggered by events and alarms I created. This worked very well for me.<br />
However, on these new LM5 Lite devices, the <span style="font-weight: bold;" class="mycode_b">PP Push Notification app is no longer available</span>, and with the new notification apps/services, I’m <span style="font-weight: bold;" class="mycode_b">not able to receive push messages on my phone</span> for some alerts that I would like to implement.<br />
My questions are:<br />
<ol type="1" class="mycode_list"><li>What is the <span style="font-weight: bold;" class="mycode_b">recommended way to send push notifications to mobile phones</span> on LM5 Lite with recent firmware?<br />
</li>
<li>Is there a <span style="font-weight: bold;" class="mycode_b">replacement for PP Push Notification</span>, or an official supported solution?<br />
</li>
<li>Are there examples or documentation for configuring <span style="font-weight: bold;" class="mycode_b">mobile notifications for custom alerts</span>?<br />
</li>
</ol>
Any guidance or best practices would be greatly appreciated.<br />
Thank you in advance.]]></description>
			<content:encoded><![CDATA[Hello everyone,<br />
I recently purchased new Logic Machine devices with the following specifications:<ul class="mycode_list"><li><span style="font-weight: bold;" class="mycode_b">HW:</span> LM5 Lite (i.MX6)<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">SW:</span> 20240426<br />
</li>
</ul>
On older Logic Machine models, I used the <span style="font-weight: bold;" class="mycode_b">PP Push Notification</span> app to receive alert messages on my mobile phone, triggered by events and alarms I created. This worked very well for me.<br />
However, on these new LM5 Lite devices, the <span style="font-weight: bold;" class="mycode_b">PP Push Notification app is no longer available</span>, and with the new notification apps/services, I’m <span style="font-weight: bold;" class="mycode_b">not able to receive push messages on my phone</span> for some alerts that I would like to implement.<br />
My questions are:<br />
<ol type="1" class="mycode_list"><li>What is the <span style="font-weight: bold;" class="mycode_b">recommended way to send push notifications to mobile phones</span> on LM5 Lite with recent firmware?<br />
</li>
<li>Is there a <span style="font-weight: bold;" class="mycode_b">replacement for PP Push Notification</span>, or an official supported solution?<br />
</li>
<li>Are there examples or documentation for configuring <span style="font-weight: bold;" class="mycode_b">mobile notifications for custom alerts</span>?<br />
</li>
</ol>
Any guidance or best practices would be greatly appreciated.<br />
Thank you in advance.]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[application Store]]></title>
			<link>https://forum.logicmachine.net/showthread.php?tid=6248</link>
			<pubDate>Tue, 13 Jan 2026 13:40:39 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://forum.logicmachine.net/member.php?action=profile&uid=5801">ALEJANDRO</a>]]></dc:creator>
			<guid isPermaLink="false">https://forum.logicmachine.net/showthread.php?tid=6248</guid>
			<description><![CDATA[Good afternoon,<br />
<br />
I'm working on a BMS project and the LM5s are already out of the office. I can upload the programming to them, but I'm having trouble giving them internet access and I need the files for the following apps:<br />
<br />
1. BACnet Client<br />
<br />
2. Modbus Profiler<br />
<br />
3. Alert Manager<br />
<br />
I've tried searching for them on the forum but haven't been able to find them. Thank you very much.]]></description>
			<content:encoded><![CDATA[Good afternoon,<br />
<br />
I'm working on a BMS project and the LM5s are already out of the office. I can upload the programming to them, but I'm having trouble giving them internet access and I need the files for the following apps:<br />
<br />
1. BACnet Client<br />
<br />
2. Modbus Profiler<br />
<br />
3. Alert Manager<br />
<br />
I've tried searching for them on the forum but haven't been able to find them. Thank you very much.]]></content:encoded>
		</item>
	</channel>
</rss>