

The AJSR04T is a surface mount resistor designed for use in electronic circuits where current limiting, voltage division, or signal conditioning is required. Known for its reliability and precision, the AJSR04T is a popular choice in applications ranging from consumer electronics to industrial control systems. Its compact size and surface-mount design make it ideal for high-density circuit boards.








| Parameter | Value |
|---|---|
| Resistance Range | 10 Ω to 1 MΩ |
| Tolerance | ±1% |
| Power Rating | 0.25 W (1/4 W) |
| Temperature Coefficient | ±100 ppm/°C |
| Operating Temperature | -55°C to +155°C |
| Package Type | 1206 (Surface Mount) |
| Maximum Working Voltage | 200 V |
| Maximum Overload Voltage | 400 V |
The AJSR04T is a two-terminal component with no polarity. Below is the pin configuration:
| Pin Number | Description |
|---|---|
| 1 | Resistor Terminal 1 |
| 2 | Resistor Terminal 2 |
The AJSR04T can be used as a pull-up resistor in an Arduino circuit. Below is an example of connecting a push button to an Arduino UNO using the AJSR04T as a pull-up resistor.
// Define the pin connected to the push button
const int buttonPin = 2;
// Variable to store the button state
int buttonState = 0;
void setup() {
// Set the button pin as input
pinMode(buttonPin, INPUT);
// Initialize serial communication for debugging
Serial.begin(9600);
}
void loop() {
// Read the state of the button
buttonState = digitalRead(buttonPin);
// Print the button state to the Serial Monitor
if (buttonState == HIGH) {
Serial.println("Button is not pressed");
} else {
Serial.println("Button is pressed");
}
// Add a small delay to debounce the button
delay(50);
}
Resistor Overheating
Incorrect Resistance Value
Poor Solder Joints
Q: Can the AJSR04T be used in high-frequency circuits?
A: Yes, the AJSR04T can be used in high-frequency circuits, but its parasitic inductance and capacitance should be considered for very high-frequency applications.
Q: Is the AJSR04T suitable for automotive applications?
A: Yes, the AJSR04T's wide operating temperature range (-55°C to +155°C) makes it suitable for automotive and other harsh environments.
Q: How do I calculate the voltage drop across the AJSR04T?
A: Use Ohm's Law: (V = I \times R), where (V) is the voltage drop, (I) is the current, and (R) is the resistance.
Q: Can I use multiple AJSR04T resistors in parallel or series?
A: Yes, resistors can be combined in parallel or series to achieve the desired resistance value or power rating.