LabVIEW

cancel
Showing results for 
Search instead for 
Did you mean: 

Controlar matriz de leds 8x8 con DAQ6008

Saludos.

Estoy construyendo un proyecto de texto pasante en una matriz de leds 8x8, ya tengo el programa funcionando al 100%, el problema es que deseo usar la daq6008 para generar las senales para controlar esta matriz, he intentado usar el daq assistant pero no se como generar estas senales ya que la entrada de datos (data) se configura para tipo de datos numerico (color azul). Como podria generar las senales digitales? La matriz es de anodo comun.

 

0 Kudos
Message 1 of 2
(2,602 Views)

The integer data type means that the values are bit assigned based on the line number. Line 0 = 2^0 (1), Line 7 = 2^7 (128) and so on. To drive multiple lines on the port, you simply add together the values of the bits that you want to be set, so if you wanted lines 0 and 7 to output a 1 then you would write 2^7 + 2^0 (129). The other option is to click on the polymorphic drop-down on the DAQmx Write vi and choose write waveform. That would allow you to construct the data using boolean type. I typically find it much easier to use the integer format.

Charles Chickering
Architecture is art with rules.

...and the rules are more like guidelines
0 Kudos
Message 2 of 2
(2,599 Views)