Logic Machine Forum
GA import from ETS - Printable Version

+- Logic Machine Forum (https://forum.logicmachine.net)
+-- Forum: LogicMachine eco-system (https://forum.logicmachine.net/forumdisplay.php?fid=1)
+--- Forum: Gateway (https://forum.logicmachine.net/forumdisplay.php?fid=10)
+--- Thread: GA import from ETS (/showthread.php?tid=1060)



GA import from ETS - s.prathmesh - 25.10.2017

Any other way of importing GA from ETS, except the .esf ?
As GA which are not linked to any group objects in ETS, are not imported to the LM.
Any ideas which would help, because I need to create lot of GAs (around 250-300) in LM.


GA import from ETS - Habib - 25.10.2017

Place a Dummy Application in your ETS at that place your LM is located and fill it up with your GAs.
After that you can export the ESF with GAs you need.


RE: GA import from ETS - admin - 25.10.2017

Or you can convert ETS4/5 knxproj file to JSON at http://openrb.com/knxproj then use import JSON in utilities tab


RE: GA import from ETS - Erwin van der Zwart - 25.10.2017

Hi,

Or you can create them from script:
Code:
for i = 0, 255, 1 do
 address = grp.create({
     datatype = dt.bool,
     address = '1/1/' .. i,
     name = 'Object ' .. i,
     comment = 'Auto created by script',
     units = '',
     tags = {},
 })
end
BR,

Erwin


RE: GA import from ETS - s.prathmesh - 26.10.2017

Great, Thank you all.


RE: GA import from ETS - Thomas - 26.10.2017

Hi
I've a similar question. Can I update names of already existing group objects from ETS to LM?