Ir al contenido de la página

Pedal triple

  • Permite tener 2 controles de interruptor (pedales izquierdo y central) y 1 control continuo (pedal derecho) conectados sólo con un jack estéreo estándar y un solo cable
  • Disponible desde Abril 2016
  • número de artículo 383436
  • Precio por 1 Unidad(es)
  • Conmutador de polaridad No
98 €
Todos los precios incluyen IVA
En stock
1

52 Valoraciones de los clientes

4.4 / 5

Fabricación

32 Reseñas

A
Cumple perfectamente su función
Anónimo 08.04.2017
En asuntos de pedales la cuestión a veces parece obvia en ser un simple apagador accionado por el pie, pero en este caso Studiologic fue un paso más allá e hizo este set de tres pedales que en realidad está en un nivel realmente elevado. El peso junto a sus bases en goma son los ideales para evitar esos incomodísimos resbalos en plena interpretación, los pedales tienen un tamaño y dureza correctas, en esta versión el de sostenido es continuo, enviando así las 127 posiciones posibles, aunque si bien es cierto el sistema que lo hace continuo causa que se sienta un poco diferente a los pedales tradicionales, el nivel de control es total y no cuesta nada adaptarse a él. La construcción del conjunto luce y se siente realmente robusta y con su ingenioso sistema "3 en 1" al usar un TRS en lugar de tres jack lo hacen un artículo más que ideal para la serie de pianos y controladores de Studiologic.

Pd. No se aclara ni en el manual del controlador ni en el manual de los pedales, pero quien lo vaya a usar con alguno de los SL88 (Grand o Studio), debe configurarlo antes de simplemente conectarlo, para esto en el "Pedal 4" de la configuración del controlador se va hasta el final de la lista y se selecciona el SLP3-D, acto seguido se salva la configuración para que persista entre reinicios del controlador ;)
Fabricación
4
0
Reportar evaluación

Reportar evaluación

S
Para el sl88
Sercompo 31.05.2016
Aunque el tacto del pedal derecho es algo diferente debido al sistema de engranajes que monta para accionar el potenciómetro (control continuo; medio pedal) me ha parecido que han intentado que el resto de pedales se parezcan en dureza... Por lo menos más que el que se fabrica, también por fatar, para el VPC1 de Kawai.

Bien para un sl88 con conexión mediante un cable único. 2 switches (valores de resistencia diferentes en mismo contacto) y 1 potenciómetro.
Fabricación
1
0
Reportar evaluación

Reportar evaluación

DR
Pedal Studiologic SLP3-D
Daniel RS 13.03.2026
He comprado el pedal de Studiologic para combinar con mi nuevo teclado SL72 MK2 y de momento me parece una gran compra. Se configura muy rápidamente aunque Studiologic podría facilitar más la información de como hacer. El triple pedal se ve de buena calidad, El servicio de Thomann impecable, tanto para hacer el pedido como en el envío. Para mi es una compra muy recomendable.
Fabricación
0
0
Reportar evaluación

Reportar evaluación

google translate gb
Lamentablemente hubo un error. Por favor, inténtelo de nuevo más tarde.
A
In case anyone has this problem
AdrianÓMealláin 27.12.2020
I couldn’t get the three pedals to work, just the rightmost pedal, the damper. Ultimately, the problem was the stereo jack wasn’t fully inserted in the Pedal 4 socket on the SL73 keyboard. It took a good while to troubleshoot because inserting this cable has a different feeling from the mono jack on the SLP-100 pedal that came free with the keyboard. Troubleshooting this was useful because I learned that Logic Pro didn’t have instruments that could test the Soften and Sustenato pedals so I used Midi Monitor and the demo version of Pianoteq to see what MIDI control signals were coming from the keyboard, plus I was obliged to read the SLStudio manual carefully to discover about switching off other zones or at least setting all zones to the multipedal for pedal socket 4 when using the multi-pedal in one zone. So now I can use all 3 pedals of the SLP3-D multipedal as Una Corda, Sustenato and Sustain, with the free SLP-100 as a Harmonic pedal. Pity that doesn’t make me any better of a pianist. Love the keyboard and multi-pedal unit from Studio Logic.

Addendum: I wrote this MIDI plug-in script for Logic Pro to use with the Una Corda pedal:
/*
Soft Pedal script for Logic Pro X to load into the MIDI Effect Slot in the Left inspector channel strip via Scripter
Author: Adrian Ó Mealláin
When the Una Corda (or Soft) pedal is depressed, this script lessens the volume of notes, shortens them and removes AfterTouch events.
To emulate the duller tonal quality with a real Una Corda pedal when the hammer hits felt not-so-often hit,
the note is shortened to make it stop more abruptly and seem to ring less.
*/


var softPedal = false;    // Toggles true/false with the soft pedal switch
var cc = 67;   // pedals CC64 sustain, CC65 portamento, CC66 sostenuto, CC67 una corda or soft, CC68 legato, CC69 Hold 2 or harmonic
//create sliders to adjust the velocity (of loudness) and note-length Una Corda properties in the plug-in settings pop-up menu
var PluginParameters = [{name:'Fractional Velocity', type:'lin', minValue:0, maxValue:1, numberOfSteps:100, defaultValue:0.6},{name:'Length in millisecs', type:'lin', minValue:100, maxValue:1000, numberOfSteps:9, defaultValue:300}];
var noteVel;

function HandleMIDI(event)
{
if (event instanceof ControlChange && event.number == cc) {   
//toggle the Soft Pedal ON and OFF (i.e., TRUE or FALSE) when the pedal is pressed to send a Control Change 67 signal
softPedal = !softPedal;
noteVel = GetParameter('Fractional Velocity');
}

if (softPedal == true) { //the Una Corda pedal is pressed
//alter (i.e., soften) the velocity of the note by the franctional amount set in the slider
event.velocity *= noteVel;
if (event instanceof NoteOn) {
//shorten notes
var shorten = new NoteOff(event);
var noteLeng = GetParameter('Length in millisecs');
shorten.sendAfterMilliseconds(noteLeng)
}
}
if (event instanceof PolyPressure && softPedal == true){
//don't respond to AfterTouch with the Soft Pedal on
}
else {
event.send();
}
}
Fabricación
12
1
Reportar evaluación

Reportar evaluación