Behold the MT-10,000
June 30, 2008 6:48 PM
Subscribe
Messin with electronics.. filter. I'd like to slightly circuit-bend my Casiotone MT-100 - creating a switch that cuts one circuit when power is applied.
Okay, so here's the deal. When I play a chord, and switch the Casio Chord mode, the chord is essentially triggered again - the notes start a anew just as I had played them right then.
The plan is pretty simple in my mind. The drums are controlled separately (fairly simple to locate the trimpots for each drum). There's also a LED which blinks each measure. I'd like to pilfer a tiny bit of this voltage in order to possibly run into a transistor that cuts the power to the Casio Chord selector. (Note: the selector is a slide switch).
Okay, so questions: Is a transistor the right thing to use for this purpose (essentially I want an electric switch activated by a current?) What would this effect be called?
Heres a spec on a similar keyboard if that helps
410V
Sound Club Article
posted by tmcw to technology (3 comments total)
1 user marked this as a favorite
The Casio Chord switch probably has two pins, one of which is the "output" (typically connected by a resistor to the +V supply, and also to the microcontroller in the keyboard. You're going to use the transistor to let current flow between those two pins even when the button isn't pressed. You need to know which of these pins is ground, as the cheap general-purpose NPN transistor you're going to want to use cares about polarity.
If that's true, then this is easy. Trace the path to the blinky LED, and cut it right before it gets back to ground. Connect the positive side of what you just cut to the base (B) of the transistor. Connect the ground side of what you cut to the emitter (E) of the transistor. Connect the collector (C) of the emitter to the high side of the chord switch, and the low side of the switch to E along with that LED path you connected before.
So: When the Casio turns on the LED, current will flow through it and then into B, out E, and on to ground. This base-emitter current will cause the transistor to start conducting, essentially closing a switch between C and E, which will mimic pressing the chord switch (which does the same thing).
Some caveats:
1) If the LED is just barely working already, you're introducing another .6V diode drop into its circuit, and it may get dimmer or shut off entirely (in which case none of this works). This is pretty unlikely.
2) If the switch is somehow floating in the circuit (instead of being a standard pull-up resistor to ground setup) then this single-transistor setup might not work, or you might have to try something a little sneakier to get it to work completely.
3) If the LED is only on for a short time, it's possible that the chord switch is de-bounced enough that the microcontroller will ignore the signal entirely (de-bouncing is a normal hardware or software trick where you ignore blips in a switch's signal that are too short for a human to have produced; without it what you think is a single button press looks, to a speedy computer, to be 50 presses as the contacts chatter against each other for 1/1000th of a second).
There are probably a bunch of other possible ways this could go wrong, but why take the fun out of it? If you're feeling cautious, fire up your multimeter and confirm that all the assumptions above are correct. If not, start soldering.
posted by range at 8:14 PM on June 30, 2008