More actions
No edit summary |
m Knaadmin moved page The Ekdahl FAR - Command language (1.0) to The Ekdahl FAR - Command language over redirect |
||
| (3 intermediate revisions by the same user not shown) | |||
| Line 230: | Line 230: | ||
== CV Mapping == | == CV Mapping == | ||
''CV Mapping'' works exactly like the ''MIDI mapping'' with the difference that the command for setting the ''CV mapping'' is different and that | ''CV Mapping'' works exactly like the ''MIDI mapping'' with the difference that the command(s) for setting the ''CV mapping'' is different and that they all modify (and thus share) the "value"-''variable''. These ''events'' are triggered whenever the analog-to-digital converter senses a change in a control or modulation jack, if you use something like an LFO with the modulation jacks here you will get a LOT of events and subsequent ''commands'' being sent. | ||
'''FAR < 1.1:''' | '''FAR < 1.1:''' | ||
| Line 248: | Line 248: | ||
The commands responsible for changing the CV mapping are located in the "controlbox"-module, these are | The commands responsible for changing the CV mapping are located in the "controlbox"-module, these are | ||
* '''harmonic''' - Sets the ''commands'' executed when the "Harmonic"-knob or modulation changes | * '''harmonic''' '''/ har''' - Sets the ''commands'' executed when the "Harmonic"-knob or modulation changes | ||
* '''harmonicshift''' - Sets the ''commands'' executed when the "Harmonic shift"-knob or modulation changes | * '''harmonicshift''' '''/ has''' - Sets the ''commands'' executed when the "Harmonic shift"-knob or modulation changes | ||
* '''finetune''' - Sets the ''commands'' executed when the "Fine tune"-knob changes | * '''finetune / fin''' - Sets the ''commands'' executed when the "Fine tune"-knob changes | ||
* '''pressure''' - Sets the ''commands'' executed when the "Pressure"-knob or modulation changes | * '''pressure''' '''/ pre''' - Sets the ''commands'' executed when the "Pressure"-knob or modulation changes | ||
* '''mute''' - Sets the ''commands'' executed when the "Mute"-knob or modulation changes | * '''mute''' '''/ mut''' - Sets the ''commands'' executed when the "Mute"-knob or modulation changes | ||
* '''hammerscale''' - Sets the ''commands'' executed when the "Hammer scale"-knob changes | * '''hammerscale / hms''' - Sets the ''commands'' executed when the "Hammer scale"-knob changes | ||
* '''gate''' - Sets the ''commands'' executed when the "Gate"-switch or modulation changes | * '''gate / gt''' - Sets the ''commands'' executed when the "Gate"-switch or modulation changes | ||
* '''hammertrig''' - Sets the ''commands'' executed when the "Hammer Trig"-button or modulation changes | * '''hammertrig''' '''/ hmt''' - Sets the ''commands'' executed when the "Hammer Trig"-button or modulation changes | ||
In order to set/retrieve ''mapping data'' we just use a regular "rqi"-''command''. To for instance get the ''command string'' executed when the "pressure" knob or modulation is sent we can do the following | |||
'''FAR < 1.1:''' | |||
[send] rqi:acm:3 | |||
[returns] [irq]acm:3:'bpb:value' | |||
{{docnav | '''FAR 1.1:''' | ||
[send] rqi:controlbox.pressure | |||
[returns] [irq]cb[0].pre:'bw.bp.ba:value' | |||
As can be seen, when the ''pressure'' knob or modulation changes, the new data read by the ADC (stored in the "value"-''variable'') is sent to the ''command'' controlling the ''bow pressure baseline.'' Hopefully at this point it is obvious that making the knob and jack on the ''control box'' that is labeled as "Pressure" do something completely different, is quite easy - just remap the ''command string''.{{docnav | |||
|[[The Ekdahl FAR - Service|Service]] | |[[The Ekdahl FAR - Service|Service]] | ||
|[[The Ekdahl FAR - Command reference|Command reference]] | |[[The Ekdahl FAR - Command reference|Command reference]] | ||
}} | }} | ||