How to make speed slower?
I’m not good in programming and with English not so good. I only whant the encoders whorks correct.
A unison: when is not 0 its some additional sound appears and function becomes useless as I think. Is this normal?
How can I switch between ensembles from my midi sequencer?
How to make speed slower?
I’m not good in programming and with English not so good. I only whant the encoders whorks correct.
in a setup_mbfm_v1.asm file you can find some more info about encoder modes
;; o the third parameter contains the encoder mode:
;; either MIOS_ENC_MODE_NON_DETENTED
;; or MIOS_ENC_MODE_DETENTED
;; or MIOS_ENC_MODE_DETENTED2
;; or MIOS_ENC_MODE_DETENTED3
;; see also http://www.midibox.o…d=encoder_types
may be you need to change to the another encoder mode than are by default?
Regards,Janis
How to make speed slower?
I think like this…
Available Encoder Modes:
ENC_MODE_ABSOLUTE send absolute value
ENC_MODE_40SPEED send 40 +/- <speed> (for Native Instruments Software)
ENC_MODE_00SPEED send 00 +/- <speed> (for Steinberg Software)
ENC_MODE_40_1 send 40 +/- 1
ENC_MODE_00_1 send 00 +/- 1
ENC_MODE_INCDEC send CC Inc/Dec
ENC_MODE_LCEMU send 0<speed> when turned clockwise, 4<speed> on counter clockwise
(protocol used by Logic Control/Mackie)
ENC_MODE_HOUSTON_EMU send absolute value + Bn <CC+0x20> 00
(protocol used by Logic Control/Mackie)
optional speed flags: &NORMAL (default), &FAST or &SLOW
example
ENC_MODE_ABSOLUTE&SLOW ==> encoder will move fast
ENC_MODE_ABSOLUTE&FAST ==> encoder will move slow
anyway..this is what i have tested
cheers
thanks, now all is working.
Not to much of a bump here.
I am configuring my MBFM and I am having issues with the speed of the encoders. I have tried the different encoder modes Detented, Detented2,3,4,5 and have not had any luck finding the sweet spot. I also tried the absolute fast and slow settings described above. I have better results using detented2 and 3. I can turn the data encoder very slow to step up one but if i turn it a full click it jumps 4 spaces. Any suggestions. I understand there is a topic on this in German but i can’t read German 
Regards,
echo
Not to much of a bump here.
I am configuring my MBFM and I am having issues with the speed of the encoders. I have tried the different encoder modes Detented, Detented2,3,4,5 and have not had any luck finding the sweet spot. I also tried the absolute fast and slow settings described above. I have better results using detented2 and 3. I can turn the data encoder very slow to step up one but if i turn it a full click it jumps 4 spaces. Any suggestions. I understand there is a topic on this in German but i can’t read German 
I saw the encoder settings for the MBFM made by me :
#define CS_MENU_ENC_SPEED_VALUE 3
and by the type :
MIOS_ENC_MODE_DETENTED2 for all encoders
Regards,
Janis
I saw the encoder settings for the MBFM made by me :
#define CS_MENU_ENC_SPEED_VALUE 3
and by the type :
MIOS_ENC_MODE_DETENTED2 for all encoders
Regards,
Janis
Thanks. That’s what I needed!