I have two colors, blue and cyan(both connected to different colored cables which are connected to a bundled cable)
I want the blue one to flash first then the cyan one then the blue and so on..
i have this code to work from right now, but i dont know where to go from here(or if its right at all).
term.clear()
term.setCursorPos(1,1)
print("lights on or off?")
input = read()
answer = "on"
if input == answer then
rs.setBundledOutput("right", colors.blue)
sleep(1,0)
rs.setBundledOutput("right", colors.cyan)
sleep(1,0)
i also wonder if there's any way to turn it off again without using ctrl+t
Thanks in advance for any help! :)/>/>