25.10.2017, 16:26
Hi,
Or you can create them from script:
BR,
Erwin
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
Erwin