≥{{item.MinNumber}}:
{{pro.LadderPrices[num].viewPrice}}
{{item.viewPrice}}
UTSOURCE()サイトは、ここをクリック
Dear customers, due to the implementation of the GDPR policy in Europe, UTSOURCE has also made adjustment accordingly to meet the policy requirements. Please read the new privacy policy carefully and this window will no longer pop up after you accept it.
Delivery Address
+ アドレスの追加
新運送先
*追跡情報を時間内に受信できるように、携帯電話番号を正しく入力してください。
国コード
お気に入り
Utsource certified original
Utsource認定のオリジナル部品は、次の保証を提供します。
1. Utsourceは100%オリジナルを保証します。
2. Utsource認定のオリジナル部品は、90日以内であれば無条件で返品および返金できます。
製品の説明
SEVEN DARLINGTON ARRAYS
このサイトで使用されているすべての製品名、商標、ブランド、ロゴは、それぞれの所有者の財産です。 これらの名前、商標、ブランド、およびロゴを使用した製品の描写、説明、または販売は、識別のみを目的としており、権利所有者との提携または許可を示すことを意図したものではありません。
Parameter | Symbol | Min | Typical | Max | Unit | Conditions |
---|---|---|---|---|---|---|
Supply Voltage | VCC | 4.5 | - | 55 | V | - |
Input Voltage (High Level) | VIH | 2.0 | - | 55 | V | IIN = 10 μA |
Input Voltage (Low Level) | VIL | - | - | 0.8 | V | IIN = 1.6 mA |
Output Current (Sink) | IO | - | 500 | - | mA | VCE(sat) = 1.2 V |
Continuous Output Current (Sink) | IC | - | 500 | - | mA | TA = 25°C, Pulse Width ≤ 1 ms, Duty Cycle ≤ 1% |
Peak Output Current (Sink) | ICPK | - | 600 | - | mA | TA = 25°C, Pulse Width ≤ 1 ms, Duty Cycle ≤ 1% |
Collector-Emitter Saturation Voltage | VCE(sat) | - | 1.2 | - | V | IC = 500 mA |
Base-Emitter Saturation Voltage | VBE(sat) | - | 1.8 | - | V | IC = 500 mA, IB = 50 mA |
Leakage Current | ICEO | - | 100 | - | nA | VCE = 50 V, TA = 25°C |
Storage Temperature Range | TSTG | -65 | - | 150 | °C | - |
Operating Temperature Range | TA | -40 | - | 105 | °C | - |
Power Supply:
Input Signals:
Output Current:
Saturation Voltages:
Leakage Current:
Temperature Considerations:
Handling and Storage:
Circuit Design:
The ULN2003APG/AFWG Series are high-voltage, high-current darlington drivers comprised of seven NPN darlington pairs.
All units feature integral clamp diodes for switching inductiveloads.
Applications include relay, hammer, lamp and display (LED) drivers.
Features
● Output current (single output):500mA max
● High sustaining voltage output: 50V min
● Output clamp diodes
● Inputs compatible with various types of logic
● Package Type-APG: DIP-16pin
● Package Type-AFWG: SOL-16pin
QUANTITY | UNIT PRICE | PLUS UNIT PRICE | TOTAL PRICE |
---|---|---|---|
≥1: | US $0.69550 | US $0.62595 | US $0.62595 |
≥5: | US $0.55640 | US $0.50076 | US $2.50380 |
≥10: | US $0.31993 | US $0.28794 | US $2.87940 |
≥20: | US $0.27820 | US $0.25038 | US $5.00760 |
≥50: | US $0.25038 | US $0.22534 | US $11.26700 |
≥100: | US $0.24343 | US $0.21908 | US $21.90800 |
≥200: | US $0.23647 | US $0.21282 | US $42.56400 |
≥500: | US $0.22952 | US $0.20656 | US $103.28000 |
≥1000: | US $0.22256 | US $0.20030 | US $200.30000 |
代替製品
Substitute Product | Brief Description |
---|---|
ULN2003AN | Darlington transistor array, similar to ULN2003APG with similar pin configuration and specifications. |
ULN2803APG | 8-bit Darlington transistor array offering increased channels, suitable for higher requirements. |
MIC5801BN | CMOS buffered Darlington driver with higher input/output voltage compatibility. |
TD62783APG | 7-channel Darlington sink driver, offering a wider operating temperature range. |
SN75468N | Darlington transistor array, pin-to-pin compatible with ULN2003APG with similar performance. |
MC1413BDG | 7 NPN Darlington transistor array integrated circuit with similar performance characteristics. |
TCA0372DP2 | Dual power operational amplifier used for high current applications, slightly different application. |
製品の使用
The ULN2003APG is a high-voltage, high-current Darlington transistor array that is commonly used in various circuits for its ability to drive loads such as relays, stepper motors, LEDs, and other inductive loads. Here are some common applications and circuits that utilize the ULN2003APG:
Stepper Motor Driver:
Relay Driver:
Microcontroller Pin -> Input pin of ULN2003APG
Output pin of ULN2003APG -> Relay Coil
Common Ground
LED Matrix Driver:
Output pin of ULN2003APG -> Cathodes of LEDs
Anodes of LEDs -> Appropriate current limiting resistor -> Voltage supply
Inductive Load Driver:
Microcontroller Pin -> Input pin of ULN2003APG
Output pin of ULN2003APG -> Inductive Load
Common Ground
High-Voltage Logic Level Shifting:
Here's a basic example schematic of using ULN2003APG to drive a relay:
Microcontroller Pin
|
V
+-------------------+
| |
| ULN2003APG |
| |
| IN1 OUT1--|----->> Relay Coil
| IN2 |
| IN3 |
| IN4 |
| IN5 |
| IN6 |
| IN7 |
| |
+-------------------+
Here’s a basic example using Arduino to control a stepper motor with ULN2003APG:
#include <Stepper.h>
const int stepsPerRevolution = 2048; // change this to match your stepper motor
Stepper myStepper(stepsPerRevolution, 8, 10, 9, 11); // IN1, IN3, IN2, IN4 pins
void setup() {
myStepper.setSpeed(15); // set the motor speed (RPMs)
}
void loop() {
myStepper.step(stepsPerRevolution); // one revolution clockwise
delay(1000);
myStepper.step(-stepsPerRevolution); // one revolution counterclockwise
delay(1000);
}
Ensure that the output pins of the ULN2003APG drive the stepper motor connections in the correct sequence to allow rotation.
These examples highlight how the ULN2003APG can simplify the control of high-current or high-voltage devices with low-voltage logic, making it a versatile component in many electronics projects.
グローバル物流国リスト (グローバルぶつりゅうこくリスト)
国旗 | 国名 | 配達予定時間 | 最低初重量費用 | ||
---|---|---|---|---|---|
速達 | 通常輸送 | 速達 (0.5kg) | 通常輸送 (0.05kg) |
注文
支払い
送料
ギフトクーポン/プラスサービス
戻る
返品は通常、荷物の配達日から90日以内に完了すると受け付けられます。
欠陥(不適合製品の第三者品質報告書を提供してください)
返送料金は前払いする必要があります。 代金引換貨物は受け付けません。
保証ポリシー
すべてのUTSOURCEの購入には、90日間の返金返品ポリシーに加えて、製造上の欠陥に対する100日間のUTSOURCE保証があります。この保証は、不適切な顧客の組み立て、顧客による指示に従わないこと、製品の変更によって欠陥が生じたアイテムには適用されません。 、過失または不適切な操作。
ULN2003APG
ULN2003APGには世界中にいくつかのブランドがあり、地域の違いや買収によりULN2003APGの別名が付けられる場合があります。 ULN2003APGは次の名前でも知られています。
購入オプション
在庫状態: 10000
最小数量: 4
合計額:
US $300.00以上のご注文で、最初の0.5kg配送料無料。(アメリカを除く)
速達: 到着予定日 {0}
標準配送: 到着予定日 {0}
国:
United States
速達:(FEDEX, UPS, DHL, TNT)300$以上のご注文で、最初の0.5kg配送料無料。超過分は別途請求。(アメリカを除く)
Utsource Original Store
商品合計:283306合計:4034894
{{pro.Parameter.Brand}}
{{pro.encapsulation}}
{{pro.Parameter.DateCode}}
{{pro.brief}}
生産の専門家を停止し、生産を停止し、見つけるのが難しい多数の電子部品を提供し、メンテナンス会社を促進することができます
Reply to
submit