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.

FAN SPEEDS TO TEXT
#4
Another option is to generate text labels via a script and use them as Custom values (enums):
Code:
text = {}

text[ 0 ] = 'Auto'

for i = 1, 33 do
  text[ i ] = 'Low'
end

for i = 34, 67 do
  text[ i ] = 'Medium'
end

for i = 68, 100 do
  text[ i ] = 'High'
end

-- must be an existing object
grp.create({
  address = '32/1/20',
  enums = text
})
Reply


Messages In This Thread
FAN SPEEDS TO TEXT - by d.r soutras - 15.09.2021, 18:19
RE: FAN SPEEDS TO TEXT - by d.r soutras - 17.09.2021, 18:21
RE: FAN SPEEDS TO TEXT - by admin - 20.09.2021, 11:05
RE: FAN SPEEDS TO TEXT - by d.r soutras - 20.09.2021, 12:28
RE: FAN SPEEDS TO TEXT - by khalil - 27.06.2022, 07:48
RE: FAN SPEEDS TO TEXT - by admin - 27.06.2022, 12:31
RE: FAN SPEEDS TO TEXT - by khalil - 27.06.2022, 13:06

Forum Jump: