This forum uses cookies
This forum makes use of cookies to store your login information if you are registered, and your last visit if you are not. Cookies are small text documents stored on your computer; the cookies set by this forum can only be used on this website and pose no security risk. Cookies on this forum also track the specific topics you have read and when you last read them. Please confirm that you accept these cookies being set.

Easiest way to get datatype string
#2
Use this example. It also handles sub-datatypes which don't have a dt table entry (e.g. 01.011 -> dt.bool).
Code:
mapping = {}
for key, value in pairs(dt) do
  mapping[ value ] = 'dt.' .. key
end

obj = grp.find('1/1/2')
dpt = obj.datatype
if dpt then
  dtname = mapping[ dpt ]

  if not dtname and dpt >= 1000 then
    dtname = mapping[ math.floor(dpt / 1000) ]
  end
end

log(dtname)
Reply


Messages In This Thread
RE: Easiest way to get datatype string - by admin - 13.07.2022, 06:20

Forum Jump: