It's possible to set/hide all of the symbols on the DAC-3 display except for the SINGLE indicator. I'd like to use this as a status indicator, but it's not present in DAC3Mapper.h - Is there any reason why this isn't present?
Also, it would be neat if it was possible to address the individual segments of digits.
Also, it would be neat if it was possible to address the individual segments of digits.
Mensajes Thu 24 Nov 05 @ 1:02 pm
the values passed to the DAC3 by the compiled dll will be asci (or similar) values not pixel information
Mensajes Fri 25 Nov 05 @ 5:41 am
each digit has 7 segments, maybe it's one bit per segment
Mensajes Fri 25 Nov 05 @ 12:07 pm
The SetDigit() function takes a numeric parameter for the value to set the digit to. This can be 0-9 (To display 0-9), 0x0A (DIsplays '-') or 0x0B (Turns off digit.)
Assuming the DAC-3 SDK itself (From Visiosonic) allows individual segments to be addressed, perhaps support for 0x(NN)0 could be added to the SetDigit() function (Where NN is a value derived from the bit mask of segments to display.)
Assuming the DAC-3 SDK itself (From Visiosonic) allows individual segments to be addressed, perhaps support for 0x(NN)0 could be added to the SetDigit() function (Where NN is a value derived from the bit mask of segments to display.)
Mensajes Fri 25 Nov 05 @ 2:34 pm