

The Tube Socket 9Pin (PCP9-F), manufactured by GD-Parts, is a high-quality socket designed to securely hold and connect 9-pin vacuum tubes in electronic circuits. It provides both electrical connections and mechanical support, ensuring reliable operation in audio amplifiers, radio equipment, and other vacuum tube-based devices. This socket is compatible with popular 9-pin vacuum tubes such as the ECC83, 12AX7, and EL84.








The following table outlines the key technical details of the Tube Socket 9Pin (PCP9-F):
| Parameter | Specification |
|---|---|
| Manufacturer | GD-Parts |
| Part ID | PCP9-F |
| Number of Pins | 9 |
| Material | Ceramic base with gold-plated contacts |
| Mounting Type | Chassis mount |
| Pin Diameter | 1.02 mm |
| Pin Spacing | 2.54 mm (standard 9-pin configuration) |
| Operating Temperature | -40°C to +125°C |
| Dimensions | 30 mm (diameter) x 15 mm (height) |
The Tube Socket 9Pin follows the standard 9-pin vacuum tube configuration. The pinout is as follows:
| Pin Number | Description |
|---|---|
| 1 | Plate (Anode) |
| 2 | Grid 1 (Control Grid) |
| 3 | Cathode |
| 4 | Heater (Filament) |
| 5 | Heater (Filament) |
| 6 | Plate (Anode) |
| 7 | Grid 2 (Screen Grid) |
| 8 | Cathode |
| 9 | Grid 3 (Suppressor Grid) or NC |
While the Tube Socket 9Pin is not directly compatible with digital microcontrollers like the Arduino UNO, it can be used in conjunction with an analog circuit to process signals. For example, you can use the socket to hold a 12AX7 vacuum tube in a preamplifier circuit, which can then interface with the Arduino for signal analysis.
// Example: Reading the output of a tube preamplifier with Arduino UNO
// Note: The tube preamplifier circuit must be built separately and connected
// to the Arduino's analog input pin.
const int analogPin = A0; // Analog pin connected to the preamplifier output
void setup() {
Serial.begin(9600); // Initialize serial communication
}
void loop() {
int sensorValue = analogRead(analogPin); // Read the analog signal
float voltage = sensorValue * (5.0 / 1023.0); // Convert to voltage
Serial.print("Voltage: ");
Serial.println(voltage); // Print the voltage to the Serial Monitor
delay(100); // Delay for stability
}
By following this documentation, users can effectively integrate the Tube Socket 9Pin (PCP9-F) into their electronic projects, ensuring reliable and efficient operation.