dominik Posted January 21, 2005 Report Share Posted January 21, 2005 I have some problems to understand the connection (and control) of the meters in the MidiBox LC emulation:If I understood the midi specification of the LC correctly, the meter level is transmitted in the range of 0x0 to 0xC. Additionally, 0xE and 0xF control the setting and clearing of an overload flag.This means, that we have 12 (0x0 till 0xC) displayable meter levels + 1 overload LED.In the MidiBox design, I can only find 11 meter LEDs + 1 overload LED? Is there a reason for getting rid of the higher resolution? How is the transmitted data transformed to the MidiBox LC scale?Best regardsDominik Quote Link to comment Share on other sites More sharing options...
Screaming_Rabbit Posted January 21, 2005 Report Share Posted January 21, 2005 ... max. supported outs by MIOS: 128.If you want LEDs for indication of all the other functions you would need more than one "core", when using more than 11 LEDs.Greets, Roger Quote Link to comment Share on other sites More sharing options...
dominik Posted January 21, 2005 Author Report Share Posted January 21, 2005 Maybe my question has not become clear:There are enough pins left to realize a meter level display of more than 12 LEDs (take e.g. a look at the unused pins on the DOUT module for the LEDrings/meters in the MidiBox LC design).The question is: How can I realize (in MIOS) the appropriate output of the transmitted meter level?Best regards? Quote Link to comment Share on other sites More sharing options...
Screaming_Rabbit Posted January 21, 2005 Report Share Posted January 21, 2005 There are enough pins left to realize a meter level display of more than 12 LEDs ... I didn't state, that there aint enough pins. But the OS "MIOS" allows you only to configure 128 INs and 128 OUTs (per Core).Greets, Roger Quote Link to comment Share on other sites More sharing options...
dominik Posted January 22, 2005 Author Report Share Posted January 22, 2005 I am deeply sorry, but I do not understand what you mean ???1. If you counted the LED rings separately, you already end up with more than 128 DOuts for the standard LC-design.2. Isn't it possible to just consider a 13th LED when switching the appropriate cathode of the meter LEDS to 0?Thanks for you answers,best regards Dominik Quote Link to comment Share on other sites More sharing options...
TK. Posted January 22, 2005 Report Share Posted January 22, 2005 Hi Dominik,you can add this additional LED for each meter by changing the pattern table in lc_meters.inc. The anodes of these LEDs have to be connected to a free pin of the second shift register which is used by Meters/LEDrings.So long you don't want to change the DOUT pin for the overdrive LEDs (currently D4), you could change the pattern in the following way: ;; 16 entries for meter pattern (can be changed if more LEDs connected) ;; note: the 12th LED (overdrive) will be inserted automatically in LC_METERS_PatternSet dw b'0000000000000000' dw b'0000000000000001' dw b'0000000000000011' dw b'0000000000000111' dw b'0000000000001111' dw b'0000000000011111' dw b'0000000000111111' dw b'0000000001111111' dw b'0000000011111111' dw b'0000000111111111' dw b'0000001111111111' dw b'0000011111111111' dw b'0001011111111111' dw b'0001011111111111' dw b'0001011111111111' dw b'0001011111111111'[/code]In this case the 12th LED has to be connected to D3 of the second shift registerBest Regards, Thorsten. Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.