Sju wrote:Thanks for the reply.
I tested the range inversion in the MIDI mappings, but this did not set the Thunder mode enabled by default.
The goal here is to have it enabled by default, immediately when you load the preset, without having to touch any pedals. Basically this would allow creating presets where the Thunder mode is expected to be _always on_, just like for the Felt presets the Celeste pedal is always on ("Reverse the celeste pedal" box is checked).
If you want to use the standalone app, in absence of this functionality, what you can do is write a startup script ( here I list the sequence for Mac OS, similar logic would work on windows
1) setup IAC virtual driver (on Mac) or loopmidi (on Windows) and make sure Pianoteq listen to the virtual device
2) create a bash script to be launched in command line ( it can be associated to an icon on the desktop that contains the following instructions :
open -a /Applications/Pianoteq\ 9/Pianoteq\ 9.app
while ! pgrep -xq "Pianoteq"; do
sleep 0.2
done
sendmidi dev "DRIVER" cc CCnumber 127
where DRIVER is the name of the virtual driver seen by the system ( IAC , midi loop or other )
The loop is to make sure pianoteq is fully launched as the open command is asynchronous.
the 127 value being sent to the CC number will press the thunder pedal down at startup
Last edited by Pianistically (Today 00:13)