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.

traffic light effect
#1
Hello 
Is it possible to create 4-5 lamps that will work like a traffic light, one turns on and the other turns off in cycles? If the enable option is disabled Shy . Thanks
Reply
#2
Use this resident script. Sleep time controls when the next lamp will be turned on. Any number of objects can be specified.
Code:
objects = {
  '0/0/1',
  '0/0/2',
  '0/0/3',
}

curr = (curr or 0) + 1

if curr > #objects then
  curr = 1
end

if prev then
  grp.checkwrite(objects[ prev ], false)
end

grp.checkwrite(objects[ curr ], true)
prev = curr

This script can be enabled/disabled from a different script using these functions: https://kb.logicmachine.net/libraries/lu...enablename
Reply
#3
(02.05.2024, 07:38)admin Wrote: Use this resident script. Sleep time controls when the next lamp will be turned on. Any number of objects can be specified.
Code:
objects = {
  '0/0/1',
  '0/0/2',
  '0/0/3',
}

curr = (curr or 0) + 1

if curr > #objects then
  curr = 1
end

if prev then
  grp.checkwrite(objects[ prev ], false)
end

grp.checkwrite(objects[ curr ], true)
prev = curr

This script can be enabled/disabled from a different script using these functions: https://kb.logicmachine.net/libraries/lu...enablename

objects = {
  '1/0/51',
  '1/0/53', 
}

curr = (curr or 0) + 1

if curr > #objects then
  curr = 1
end

if prev then
  grp.checkwrite(objects[ prev ], false)
end

grp.checkwrite(objects[ curr ], true)
prev = curr

Hello, I put the data in this way, where do I see the time it is supposed to change, it doesn't work, I work with a Schneider LS 100 200 product, thanks
Reply
#4
Did you use resident script? The script interval defines the change.
------------------------------
Ctrl+F5
Reply


Forum Jump: