Does anyone have a SIMPLE way to turn on/off a single LED in an array? I just can't make any sense of how LED arrays actually work.
THANKS,
joeb
SIMPLE LED script
Re: SIMPLE LED script
Hey Joe,
Hope this helps: Enjoy,
Damien
Hope this helps: Enjoy,
Damien
DªM¡∑n˙P®¡¢∑
http://soundcloud.com/d4m13npr1c3
· T∑Mpl4T3z ·
http://liine.net/en/community/user-library/user/4761/
http://soundcloud.com/d4m13npr1c3
· T∑Mpl4T3z ·
http://liine.net/en/community/user-library/user/4761/
Re: SIMPLE LED script
Thanks Damien. Got me where I needed to go
:)
joeb
:)
joeb
Re: SIMPLE LED script
NP. Here's an even better resource: http://www.jazzmutant.com/workshop_tuto ... id=vectors
Enjoy,
Damien
Enjoy,
Damien
DªM¡∑n˙P®¡¢∑
http://soundcloud.com/d4m13npr1c3
· T∑Mpl4T3z ·
http://liine.net/en/community/user-library/user/4761/
http://soundcloud.com/d4m13npr1c3
· T∑Mpl4T3z ·
http://liine.net/en/community/user-library/user/4761/
Re: SIMPLE LED script
I keep see in' the JazzMutant refs. One of these days I'm gonna go check it out.....
Interesting list of locations, Albuquerque, Amsterdam, Paris.....
You must have a teleporter, a private plane, or a lot of money.
thanks mr d!
joeb
Interesting list of locations, Albuquerque, Amsterdam, Paris.....
You must have a teleporter, a private plane, or a lot of money.
thanks mr d!
joeb
Re: SIMPLE LED script
Hey Joe,
I'm still trying to figure out a way to address specific LEDs in an array (via script)... alas. Any ideas?
-D
I'm still trying to figure out a way to address specific LEDs in an array (via script)... alas. Any ideas?
-D
If only...joebataz wrote:You must have a teleporter, a private plane, or a lot of money.
DªM¡∑n˙P®¡¢∑
http://soundcloud.com/d4m13npr1c3
· T∑Mpl4T3z ·
http://liine.net/en/community/user-library/user/4761/
http://soundcloud.com/d4m13npr1c3
· T∑Mpl4T3z ·
http://liine.net/en/community/user-library/user/4761/
-
- Liine Staff
- Posts: 126
- Joined: 14 Dec 2011 12:12
Re: SIMPLE LED script
Make sure the BarGraph option is turned off, then you should be able to set the "value" variable of the Leds object to any set of 0 and 1s :
To address just a single led :
Code: Select all
Leds.value = {0,1,0,0,0,1};
Code: Select all
Leds.value[3] = 1;