I dont get it as usual

i want to control on/off buttons on my allen and heath console from stage with my boss gt1000
here lies the problem:
the a&h sends / recieves on off notes see image on the left
th gp1000 cc values and velocity but just one at the time see.image on the right

there is no way to change midibehaviour within the allen and heath

basically a scriplet wich turns :

cc 64 velocity 127 channel 5 (in from gt1000) ON
into
note on “” velocity 127 channel 5
note off “” velocity 0 channel 5
and
cc 64 velocity 0 channel 5 (in from gt1000) OFF
into
note on “” velocity 63 channel 5
note off “” velocity 0 channel 5

and this alltogether on a LED button on the panel

help very much apprechiated!!!

Hiho!
Have look at this scriptlet if it is what you need…
You can just MIDI learn the switch widget to your pedal (CC#64) and connect the Scriptlets output to the corresponding MIDI port of your A&H.

2021-10-09 18_13_37-Window

SwitchToNote_Scriptlet.gig (49 KB)

// Declare various kinds of parameters
var
ch_nr : Subrange Parameter 0..16 = 5
note_nr: Subrange Parameter 0..127 = 78
switch : Discrete Parameter "OFF", "ON" = "OFF"

On ParameterValueChanged matching switch
    If switch == "ON" Then
        SendNow(MakeNoteMessageEx(note_nr, 127, ch_nr))
        SendNow(MakeNoteMessageEx(note_nr, 0, ch_nr))
    Else
        SendNow(MakeNoteMessageEx(note_nr, 63, ch_nr))
        SendNow(MakeNoteMessageEx(note_nr, 0, ch_nr))
    End
End
4 Likes

testing now…

i ow you 400000 tons of jever!!!

1 Like

:grin: :grin: :grin: So i assume it’s working? :beers: :beers: :beers:

1 Like

great thank you soo much!!!
if you re anywhere close to:
https://fidoplayszappa.com/#tour
let me know and i ll put you and your gnädigste on se guestlist

2 Likes

Liestal could have been OK for me, but @schamass is now quicker than me for scripting :wink:

1 Like

name of you plus one!

Since Zappa is not so my favourite kind of music and my Gnädigste absolutely dislikes it, your offer is very kind, but not very tempting to me… :wink:
But i really would like to meet the forum-people in real life!

1 Like

good idea count me in…

1 Like

A GP summit in Freiburg Im Breisgau :beer::beers::pretzel:

4 Likes

Bin dabei :slight_smile:

1 Like

o.k. the next one…a scriplet (maybe?)
cc 6 coming in (volume pedal gp1000 set to cc 6 on channel 5
wich is what the a&h console wants for levels/volume.so far o.k.

but additonally the a&h needs:
cc 98 (in this example no 23) wich tells it it is a effects master send
plus it needs cc 99 to define channel number (wich one of the effects master sends)

i can offer free tickets in january in basel at se atlantis
a police tribute sung in swiss german (wich is understandable if you can read AND understand Walther von der Vogelweide) and if you dont just have a lot of beer coz we are ugly but the band is really good:
or as mentioned zappa in liestal or may in basel

Not clear enough to me.

When the following incoming MIDI message is received by GP:

  • CC#6 value_ranging_from_0_to_127

GP produces in turn for each message:

  • CC#98 23
  • CC#99 channel_number
  • CC#6 value_ranging_from_0_to_127

Is this was you want to do? If not, please explain, if yes what should be the channel_number?

  • CC#98 23 = persists as it tells the console “its one of your effects sends”
  • CC#99 channel_number = tells the console “wich one of your effects sends”
  • CC#6 value_ranging_from_0_to_127 thats the fader level only

the 98 and 99 value is needed as soon i move the pedal,not shure, just once at the beginning.

add on:
cc99 are four stereo sends
16=1st
17= second
18= third
19=fourth

the script in my noob language would be:
as soon you get cc6 value
execute once cc23 (value) and cc99 (value)
and pass cc6 all the time

  • CC#98 23 or CC#23 value? Then which value?
  • CC#99 value → which value?

in this case
cc99=18
cc98=23

sorry no cc23 at all…

OK, it should work as expected, but you in the Scriptlet you can modify the CC numbers and values. The following gig file is better than a long explanation:

TrippleCCSender_v0.9.gig (28.6 KB)

  • MIDI learn assign your own pedal controller
  • route the Scriptlet to your Mixer MIDI, that’s it

For further control, you can simply modify the CC# and values.

tausend dank!!!