Stufin
Home Quick Cart Profile

100K Ohm Resistor (Pack of 10)

Buy Now on Stufin

Component Description

100K Ohm Resistor (Pack of 10)

Overview

The 100K Ohm Resistor (Pack of 10) is a pack of 10 high-precision, axial-lead resistors with a resistance value of 100 kilohms (100,000 ohms). These resistors are designed for use in a wide range of electronic circuits and applications, including Internet of Things (IoT) devices, sensors, and other digital and analog systems.

Functionality

Resistors are passive electronic components that oppose the flow of electrical current. The primary function of a 100K ohm resistor is to

Reduce the voltage in a circuit

Divide voltage levels

Limit the current flow in a circuit

Impedance match in signal transmission lines

Act as a pull-up or pull-down resistor in digital circuits

Key Features

Resistance Value

100 kilohms (100,000 ohms) with a tolerance of 1% or 5% depending on the specific variant

Power Rating

1/4 watt or 1/2 watt, depending on the specific variant

Operating Temperature Range

-55C to +155C

Axial-Lead DesignThe resistors have a compact, axial-lead design that allows for easy installation and connection to breadboards, PCBs, or other electronic circuits

ROHS Compliant

The resistors are compliant with the Restriction of Hazardous Substances (ROHS) directive, ensuring they meet environmental safety standards

Pack of 10The package includes 10 individual resistors, providing a convenient and cost-effective solution for prototyping, testing, and production

Physical Characteristics

Dimensions

6.5mm x 2.5mm x 1.5mm (L x W x H)

Lead Material

Tin-plated copper

Body Material

Flame-resistant plastic or ceramic

Color Coding

The resistors follow the standard EIA color coding scheme to indicate the resistance value

Applications

The 100K ohm resistor is suitable for use in various IoT applications, including

Sensor circuits

Signal conditioning circuits

Voltage dividers

Audio circuits

Power supply circuits

Digital circuits (e.g., pull-up/pull-down resistors)

Ordering Information

When ordering, please specify the desired package quantity and tolerance level (1% or 5%). For bulk orders or custom requirements, contact the manufacturer or authorized distributor for more information.

Pin Configuration

  • Component Documentation: 100K Ohm Resistor (Pack of 10)
  • Overview
  • The 100K Ohm Resistor (Pack of 10) is a standard axial-lead resistor component commonly used in various electronic circuits, including IoT applications. This documentation provides a detailed description of the component's pins, their functions, and how to connect them.
  • Pin Description
  • The 100K Ohm Resistor has two pins, which are identical and interchangeable. Here's a breakdown of each pin:
  • Pin 1:
  • Function: Resistor Lead
  • Description: One of the two axial leads of the resistor that connects to a node or point in the circuit.
  • Connection: This pin can be connected to a power source, ground, or another component in the circuit.
  • Pin 2:
  • Function: Resistor Lead
  • Description: The second axial lead of the resistor that connects to a node or point in the circuit.
  • Connection: This pin can be connected to a power source, ground, or another component in the circuit.
  • Connecting the Pins
  • Here's a step-by-step guide on how to connect the pins:
  • Structure:
  • 1. Identify the pins: Before connecting the resistor, ensure you identify Pin 1 and Pin 2 correctly.
  • 2. Determine the circuit requirements: Based on your circuit design, determine which node or point Pin 1 and Pin 2 should connect to.
  • 3. Connect Pin 1: Connect Pin 1 to the designated node or point in the circuit, ensuring a secure connection.
  • 4. Connect Pin 2: Connect Pin 2 to the designated node or point in the circuit, ensuring a secure connection.
  • 5. Verify the connection: Double-check the connections to ensure they are secure and correct.
  • Important Considerations
  • When connecting the resistor, ensure the pins are not touching each other or any other conductive components to avoid short circuits.
  • Use the correct soldering technique and materials to prevent damage to the component or surrounding circuitry.
  • Always follow proper safety precautions when working with electrical circuits.
  • Additional Information
  • Resistance Value: The 100K Ohm Resistor has a resistance value of 100,000 Ohms (100K).
  • Power Rating: The power rating of this resistor is typically 1/4 Watt or 1/8 Watt, depending on the manufacturer's specifications.
  • Tolerance: The resistor's tolerance is usually 1% or 5%, which indicates the acceptable range of resistance values.
  • By following these guidelines, you can correctly connect the 100K Ohm Resistor (Pack of 10) and ensure reliable operation in your IoT project.

Code Examples

100K Ohm Resistor (Pack of 10)
=============================
Overview
------------
The 100K Ohm Resistor is a versatile electronic component used to control the flow of electric current in a circuit. This pack of 10 resistors provides a convenient and cost-effective way to implement resistance in various IoT projects. With a resistance value of 100 kilohms, these resistors are suitable for a wide range of applications, from voltage dividers to signal attenuation.
Specifications
---------------
Resistance: 100 kilohms (100,000 ohms)
 Power rating: 1/4 watt
 Tolerance: 5%
 Temperature coefficient: 500 ppm/C
 Package:-Pack of 10
Code Examples
----------------
### Example 1: Voltage Divider (Arduino)
In this example, we'll use the 100K Ohm Resistor to create a voltage divider circuit that reduces the voltage from a 5V power source to 3.3V, suitable for many IoT devices.
Components:
100K Ohm Resistor (R1)
 22K Ohm Resistor (R2)
 Breadboard
 Arduino Board (e.g., Uno or Nano)
 Jumper wires
Circuit:
R1 (100K Ohm) and R2 (22K Ohm) are connected in series between the 5V power source and ground.
Code:
```c
const int inputVoltage = 5; // 5V power source
const int R1 = 100000; // 100K Ohm resistor
const int R2 = 22000; // 22K Ohm resistor
void setup() {
  pinMode(A0, INPUT); // Voltage divider output
}
void loop() {
  int sensorValue = analogRead(A0);
  float voltage = sensorValue  (inputVoltage / 1023.0);
  Serial.print("Voltage: ");
  Serial.print(voltage);
  Serial.println(" V");
  delay(1000);
}
```
### Example 2: Signal Attenuation (Raspberry Pi)
In this example, we'll use the 100K Ohm Resistor to attenuate a signal from a sensor, reducing its amplitude to prevent overwhelming the analog-to-digital converter (ADC) on a Raspberry Pi.
Components:
100K Ohm Resistor (R1)
 Sensor (e.g., photodiode or potentiometer)
 Breadboard
 Raspberry Pi
 Jumper wires
Circuit:
R1 (100K Ohm) is connected in series between the sensor output and the Raspberry Pi's ADC input.
Code:
```python
import RPi.GPIO as GPIO
import time
GPIO.setmode(GPIO.BCM)
# Set up ADC input
GPIO.setup(18, GPIO.IN)
while True:
    # Read ADC value
    adc_value = GPIO.input(18)
    # Calculate attenuated signal value
    signal_value = adc_value  (5.0 / 1023.0)
    print("Signal value: {:.2f} V".format(signal_value))
    time.sleep(0.1)
```
Note: In this example, we assume the sensor output is within the 0-5V range. Adjust the resistor values and code according to your specific sensor requirements.
Safety Precautions
--------------------
Handle the resistors with care to avoid damage or electrical shock.
 Ensure the circuit is properly connected and powered down before making any changes.
 Use protective equipment, such as safety glasses and a soldering iron stand, when working with electronic components.
By incorporating the 100K Ohm Resistor into your IoT projects, you can effectively control the flow of electric current and create reliable, efficient circuits.