

The Amphenol ACJS-MHDR is a high-quality 6.35mm (1/4 inch) switched stereo jack designed for audio applications. This component is widely used in audio equipment to connect stereo audio signals, such as headphones, amplifiers, and musical instruments. Its built-in switch functionality allows it to control other circuit elements when a plug is inserted, making it a versatile choice for signal routing and control in audio systems.








| Parameter | Value |
|---|---|
| Manufacturer | Amphenol |
| Part Number | ACJS-MHDR |
| Connector Type | 6.35mm (1/4 inch) Stereo Jack |
| Switching Function | Normally closed (NC) switch |
| Contact Material | Nickel-plated |
| Housing Material | Thermoplastic |
| Mounting Style | Panel mount |
| Number of Contacts | 5 (Left, Right, Ground, Switch 1, Switch 2) |
| Operating Temperature | -20°C to +70°C |
The ACJS-MHDR has five pins, as detailed in the table below:
| Pin Number | Name | Description |
|---|---|---|
| 1 | Left (L) | Carries the left audio channel signal. |
| 2 | Right (R) | Carries the right audio channel signal. |
| 3 | Ground (G) | Common ground for the audio signals. |
| 4 | Switch 1 | Normally closed switch contact, opens when a plug is inserted. |
| 5 | Switch 2 | Normally closed switch contact, opens when a plug is inserted. |
Left (L) pin to the left audio signal source.Right (R) pin to the right audio signal source.Ground (G) pin to the common ground of the circuit.Switch 1 and Switch 2 pins can be used to control other circuit elements. For example, they can disconnect a speaker when a headphone plug is inserted.The ACJS-MHDR can be used with an Arduino UNO to detect when a plug is inserted. Below is an example circuit and code:
Switch 1 to an Arduino digital input pin (e.g., pin 2).Switch 2 to the Arduino ground (GND).// Define the pin connected to Switch 1
const int switchPin = 2;
// Variable to store the switch state
int switchState = 0;
void setup() {
// Configure the switch pin as an input with an internal pull-up resistor
pinMode(switchPin, INPUT_PULLUP);
// Initialize serial communication for debugging
Serial.begin(9600);
}
void loop() {
// Read the state of the switch (LOW when plug is inserted)
switchState = digitalRead(switchPin);
// Print the switch state to the serial monitor
if (switchState == LOW) {
Serial.println("Plug inserted");
} else {
Serial.println("No plug detected");
}
// Add a small delay to avoid spamming the serial monitor
delay(500);
}
Left (L), Right (R), and Ground (G) pins.Switch 1 and Switch 2.By following this documentation, users can effectively integrate the Amphenol ACJS-MHDR 6.35mm Switched Stereo Jack into their audio projects and troubleshoot common issues with ease.