Stufin
Home Quick Cart Profile

10M Ohm Resistor - (Pack of 10)

Buy Now on Stufin

Component Description

10M Ohm Resistor (Pack of 10)

Overview

The 10M Ohm Resistor is a Passive Component designed to restrict the flow of electrical current in a circuit. This pack of 10 resistors is ideal for prototyping, development, and production purposes. Resistors are essential components in electronic circuits, and this specific component offers a high resistance value of 10 Mega Ohms.

Functionality

  • Limit Current: By introducing resistance into a circuit, it controls the amount of current flowing through it, preventing damage to other components and ensuring safe operation.
  • Divide Voltage: The resistor can be used as a voltage divider, allowing for the reduction of voltage levels in a circuit.
  • Impedance Matching: It helps match the impedance of different components or circuits, ensuring maximum energy transfer and minimizing signal reflection.
The primary function of the 10M Ohm Resistor is to

Key Features

  • Resistance Value: 10 Mega Ohms (10,000,000 Ohms) 1% tolerance
  • Power Rating: 0.25 Watts (standard through-hole resistor)
  • Material: Carbon Film or Metal Film (dependent on manufacturer)
  • Package: Through-Hole Resistor (THD) with axially leaded terminals
  • Operating Temperature Range: -55C to +155C (dependent on manufacturer)
  • Packaging: Pack of 10 resistors
  • Dimensions: Typical dimensions are 3.5mm (Diameter) x 10mm (Length)

Electrical Characteristics

  • Operating Voltage: Up to 500V (dependent on manufacturer)
  • dielectric Withstanding Voltage: Typically 2.5kV (dependent on manufacturer)

Applications

  • General-purpose Electronics: Prototyping, development, and production of electronic devices
  • IoT Projects: Perfect for IoT projects that require high-impedance sensors, signal conditioning, or voltage dividers
  • Audio Equipment: Used in audio circuits for impedance matching and voltage division
  • Industrial Automation: Employed in industrial control systems, sensors, and automation circuits
The 10M Ohm Resistor is suitable for a wide range of applications, including

Compliance and Certifications

  • RoHS: Restriction of Hazardous Substances compliant
  • REACH: Compliant with EU REACH regulation
  • ISO 9001: Manufacturer certified for quality management systems
The 10M Ohm Resistor complies with relevant industry standards and regulations, including

Ordering Information

When ordering, please specify the pack quantity and resistor value (10M Ohm in this case). Ensure the resistor's specifications meet your project's requirements, and consult the manufacturer's datasheet for detailed information.

Pin Configuration

  • Component Documentation: 10M Ohm Resistor (Pack of 10)
  • The 10M Ohm Resistor is a passive electronic component that reduces the voltage or current in a circuit. It is a fundamental component in many electronic circuits and is commonly used to limit current, divide voltage, and provide impedance matching.
  • Package Details:
  • Package type: Through-Hole Resistor (THR)
  • Package size: 1/4 watt
  • Number of resistors in the pack: 10
  • Resistance value: 10 Megaohms (10,000,000 ohms)
  • Tolerance: 1% or 5% (depending on the manufacturer)
  • Operating temperature: -55C to +155C
  • Pin Description:
  • A 10M Ohm resistor does not have pins in the classical sense, as it is a two-terminal device. However, for the sake of clarity, we can refer to the two terminals as "pins."
  • Pin 1 (One end): This is one terminal of the resistor. It is usually marked with a color code or a numerical value indicating the resistance value.
  • Pin 2 (Other end): This is the other terminal of the resistor. It is also usually marked with a color code or a numerical value indicating the resistance value.
  • Connecting the Pins:
  • To connect the 10M Ohm resistor, follow these steps:
  • Step 1: Identify the terminals
  • Identify the two terminals (pins) of the resistor. Make sure you understand the color code or numerical value indicating the resistance value.
  • Step 2: Determine the connection requirement
  • Determine the connection requirement in your circuit. Decide which component or node in the circuit the resistor needs to be connected to.
  • Step 3: Connect Pin 1
  • Connect Pin 1 (one end) of the resistor to the required node or component in the circuit. Ensure a secure connection using a suitable method, such as soldering or using a breadboard.
  • Step 4: Connect Pin 2
  • Connect Pin 2 (other end) of the resistor to the required node or component in the circuit. Ensure a secure connection using a suitable method, such as soldering or using a breadboard.
  • Important Notes:
  • When connecting the resistor, ensure the correct orientation, as the resistor does not have a polarity (it can be connected in either direction).
  • Use the correct wattage rating for the resistor, as specified in the datasheet, to avoid overheating or damage.
  • Follow proper soldering techniques and safety guidelines when connecting the resistor to the circuit.
  • By following these steps, you can correctly connect a 10M Ohm resistor in your circuit, ensuring a stable and reliable operation.

Code Examples

10M Ohm Resistor - (Pack of 10) Documentation
Overview
The 10M Ohm Resistor is a versatile component used to control the flow of electric current in a circuit. This pack of 10 resistors is ideal for various IoT projects, prototyping, and electronics experiments. The 10M Ohm resistor is a common value used in many applications, including voltage dividers, signal attenuation, and impedance matching.
Specifications
Resistance: 10M Ohms (10,000,000 )
 Power rating: 1/4 watt
 Tolerance: 5%
 Operating temperature: -55C to 155C
 Package: Pack of 10
Connection Diagram
The 10M Ohm Resistor has two leads, one connected to the positive terminal and the other to the negative terminal. When connecting the resistor in a circuit, ensure that the leads are connected correctly to avoid any damage to the component or the circuit.
Code Examples
### Example 1: Voltage Divider Circuit using 10M Ohm Resistor in Arduino
In this example, we will use the 10M Ohm Resistor as part of a voltage divider circuit to measure the voltage across a sensor.
```c++
const int sensorPin = A0;      // Sensor connected to analog input A0
const int resistorPin = A1;    // 10M Ohm Resistor connected to analog input A1
int sensorValue = 0;
int resistorValue = 0;
void setup() {
  Serial.begin(9600);
}
void loop() {
  sensorValue = analogRead(sensorPin);
  resistorValue = analogRead(resistorPin);
  float voltage = (sensorValue / (resistorValue + sensorValue))  5.0;
  Serial.print("Voltage: ");
  Serial.print(voltage);
  Serial.println(" V");
  delay(1000);
}
```
### Example 2: Signal Attenuation using 10M Ohm Resistor in Raspberry Pi (Python)
In this example, we will use the 10M Ohm Resistor to attenuate a signal from a sensor connected to a Raspberry Pi.
```python
import RPi.GPIO as GPIO
import time
# Set up GPIO mode
GPIO.setmode(GPIO.BCM)
# Define sensor and resistor pins
sensor_pin = 17
resistor_pin = 23
# Set up sensor and resistor pins as inputs
GPIO.setup(sensor_pin, GPIO.IN)
GPIO.setup(resistor_pin, GPIO.IN)
while True:
    # Read sensor value
    sensor_value = GPIO.input(sensor_pin)
# Read resistor value
    resistor_value = GPIO.input(resistor_pin)
# Calculate attenuated signal
    attenuated_signal = (sensor_value / (resistor_value + sensor_value))  5.0
print("Attenuated Signal: ", attenuated_signal)
    time.sleep(1)
```
Important Notes
When handling resistors, ensure that you handle them by the body and not the leads to prevent damage.
 Always check the datasheet and specifications of the component before using it in a circuit.
 Use proper safety precautions when working with electricity and electronic components.
By following these examples and guidelines, you can effectively use the 10M Ohm Resistor in various IoT projects and applications.