Stufin
Home Quick Cart Profile

100K 3386P Trimpot(Pack of 5)

Buy Now

Component Name

100K 3386P Trimpot (Pack of 5)

Overview

The 100K 3386P Trimpot is a type of potentiometer, a variable resistor used to adjust electrical signals in a circuit. This trimpot is a compact, three-terminal device that allows for precise adjustments to be made to the signal level or voltage division ratio in a circuit. This pack of five trimpots is ideal for prototyping, testing, and production applications.

Functionality

The 100K 3386P Trimpot functions as a variable resistor, allowing the user to adjust the resistance between two of its three terminals. The third terminal is connected to the movable contact, known as the wiper, which slides along the resistive element as the trimpot is turned. The trimpot acts as a voltage divider, allowing the user to set a specific voltage ratio between the input and output terminals.

Key Features

  • Resistance: The trimpot has a maximum resistance of 100 k, allowing for fine adjustments to be made to the signal level or voltage division ratio.
  • Power Rating: The trimpot has a power rating of 0.5 Watts, making it suitable for use in a variety of low-power applications.
  • Adjustment Method: The trimpot is adjusted using a screwdriver or similar tool, which turns the wiper to change the resistance between the input and output terminals.
  • Compact Size: The trimpot is designed to be compact and space-efficient, making it ideal for use in dense circuit boards and enclosures.
  • RoHS Compliance: The trimpot is compliant with RoHS (Restriction of Hazardous Substances) directives, ensuring it meets environmental and safety standards.
  • Operating Temperature: The trimpot is designed to operate within a temperature range of -20C to 70C, making it suitable for use in a wide range of applications.
  • Packaging: This pack of five trimpots provides a convenient and cost-effective way to obtain multiple devices for prototyping, testing, and production.

Dimensions

6.1 mm x 3.2 mm x 2.5 mm (L x W x H)

Terminals

Three terminals, with the center terminal being the wiper

Body Material

Plastic

Terminal Material

Copper alloy

Applications

  • Circuit Prototyping: The trimpot is ideal for use in prototyping circuits, allowing for quick and easy adjustments to be made to the signal level or voltage division ratio.
  • Audio Equipment: The trimpot can be used in audio equipment, such as amplifiers and mixers, to adjust signal levels and tone controls.
  • Industrial Automation: The trimpot can be used in industrial automation applications, such as motor control and process control systems.
  • Medical Devices: The trimpot can be used in medical devices, such as patient monitoring systems and medical imaging equipment.

Conclusion

The 100K 3386P Trimpot is a versatile and reliable component suitable for a wide range of applications. Its compact size, ease of use, and precise adjustment make it an ideal choice for prototyping, testing, and production. With its RoHS compliance and operating temperature range, this trimpot is a reliable option for designers and engineers.

Pin Configuration

  • Component Documentation: 100K 3386P Trimpot (Pack of 5)
  • Overview
  • The 100K 3386P Trimpot is a variable resistor, also known as a potentiometer, designed for precision adjustment of electrical resistance in a circuit. This trimpot features a compact design, making it suitable for a wide range of IoT applications where space is limited.
  • Pinout
  • The 3386P Trimpot has three pins, labeled 1, 2, and 3. Here's a detailed explanation of each pin's function:
  • Pin 1:
  • Terminal: CCW (Counter-ClockWise)
  • Function: One end of the resistive track
  • Description: Pin 1 is connected to one end of the resistive track, which represents the minimum resistance value (0) when the trimpot is fully counter-clockwise rotated.
  • Pin 2:
  • Terminal: Wiper
  • Function: Sliding contact that moves along the resistive track
  • Description: Pin 2 is connected to the sliding contact (wiper) that moves along the resistive track when the trimpot is rotated. The wiper contact provides a variable resistance value between Pin 1 and Pin 3.
  • Pin 3:
  • Terminal: CW (ClockWise)
  • Function: Other end of the resistive track
  • Description: Pin 3 is connected to the other end of the resistive track, which represents the maximum resistance value (100K) when the trimpot is fully clockwise rotated.
  • Connection Structure
  • To connect the 100K 3386P Trimpot, follow this point-by-point structure:
  • 1. Power Supply Connection
  • Connect Pin 1 (CCW) to the negative power supply (GND) or a fixed voltage reference point.
  • 2. Signal Output Connection
  • Connect Pin 2 (Wiper) to the signal output, which will receive the variable resistance value.
  • 3. Power Supply Connection
  • Connect Pin 3 (CW) to the positive power supply (VCC) or a fixed voltage reference point.
  • Important Notes
  • To ensure accurate operation, use a suitable voltage rating for the trimpot, which is typically 150VDC for this component.
  • Handle the trimpot with care, as excessive force or twisting can damage the internal mechanical components.
  • When using the trimpot in a circuit, ensure that the wiper contact is not loaded with excessive current, as this can cause damage or premature wear.
  • By following these guidelines, you can effectively utilize the 100K 3386P Trimpot in your IoT projects, achieving precise control over resistance values in your circuits.

Code Examples

100K 3386P Trimpot (Pack of 5) Documentation
Overview
The 100K 3386P Trimpot is a type of potentiometer, a variable resistor that allows for the adjustment of circuit resistance. This component is commonly used in electronic circuits to provide a variable voltage or current signal. The 3386P is a popular trimpot model, offering a resistance range of 0 to 100 k.
Pinout
The 100K 3386P Trimpot has three pins:
Pin 1: CCW (Counter-ClockWise) terminal
 Pin 2: Wiper terminal
 Pin 3: CW (ClockWise) terminal
Example 1: Basic Voltage Divider Circuit
In this example, we'll show how to use the 100K 3386P Trimpot as a voltage divider to control the output voltage of a circuit.
Circuit Diagram
```
Vin  -> 100K Trimpot  -> GND
  |           |
  |  Pin 1  Pin 2  Pin 3
  |           |
  |  CCW   Wiper   CW
  |
  Vout  ->  Load (e.g., LED, Resistor)
```
Code Example (Arduino)
```c
const int trimpotPin = A0;  // Pin connected to Wiper (Pin 2)
const int loadPin = 9;     // Pin connected to Load (e.g., LED, Resistor)
void setup() {
  pinMode(trimpotPin, INPUT);
  pinMode(loadPin, OUTPUT);
}
void loop() {
  int sensorValue = analogRead(trimpotPin);
  int outputValue = map(sensorValue, 0, 1023, 0, 255);
  analogWrite(loadPin, outputValue);
  delay(10);
}
```
In this example, the trimpot is used to adjust the output voltage of the circuit, which controls the brightness of an LED or the voltage across a resistor.
Example 2: Signal Attenuation Circuit
In this example, we'll demonstrate how to use the 100K 3386P Trimpot to attenuate a signal.
Circuit Diagram
```
Vin  -> 100K Trimpot  -> R1  -> GND
  |           |       |
  |  Pin 1  Pin 2  Pin 3
  |           |       |
  |  CCW   Wiper   CW
  |
  Vout  ->  Load (e.g., Op-Amp, ADC)
```
Code Example (Python with PySerial)
```python
import serial
# Open serial connection to device (e.g., Arduino, Microcontroller)
ser = serial.Serial('COM3', 9600, timeout=1)
while True:
    # Read trimpot value (0 to 1023)
    trimpot_value = int(ser.readline().decode('utf-8'))
    
    # Calculate attenuation factor (0 to 1)
    attenuation_factor = trimpot_value / 1023.0
    
    # Apply attenuation to signal
    signal_value = signal_value  attenuation_factor
    
    # Send attenuated signal to device
    ser.write(str(signal_value).encode('utf-8'))
    ser.flush()
```
In this example, the trimpot is used to adjust the attenuation factor of a signal, which is then applied to the signal before sending it to a device (e.g., Op-Amp, ADC).
Note
These examples are just a few demonstrations of how to use the 100K 3386P Trimpot in various contexts. The specific code and circuit diagrams may vary depending on the application and microcontroller/device used.