I wrote a script to make the LEDs go on, but for some reason it won't work. The error message I get is:
end
sleep(1000)
for i=
0,9 do set_led(i,0) end
:1: unexpected symbol nea
r '@'
PRESS SHUTTER TO CLOSEThe musical notes weren't originally there (just the weird block symbol) but I converted it to DOS line endings (CR/LF) to see if that would help, and it didn't. Here's the script's code:
@title LED Test
for i=0,9 do set_led(i,1) end
sleep(1000)
for i=0,9 do set_led(i,0) end
It looks fine in the text file reader, btw.