AFB1224SH-R00
AI

### Technical Overview: Delta AFB1224SH-R00
The **AFB1224SH-R00** is a high-performance axial DC fan manufactured by Delta Electronics. It is designed for industrial-grade cooling, characterized by high airflow and a specific monitoring signal (R00).
---
### Core Specifications
| Parameter | Specification |
| :--- | :--- |
| **Frame Size** | 120mm x 120mm x 25.4mm |
| **Rated Voltage** | 24V DC |
| **Operating Voltage Range** | 14.0V to 27.6V DC |
| **Rated Current** | 0.33A (Max 0.50A) |
| **Input Power** | 7.92W |
| **Speed** | 3400 RPM |
| **Airflow** | 113.11 CFM (3.203 m³/min) |
| **Static Pressure** | 10.92 mmH₂O |
| **Noise Level** | 46.5 dB-A |
| **Bearing Type** | Dual Ball Bearing |
---
### Electronic Components & Wiring
The fan utilizes a brushless DC (BLDC) motor architecture. Below are the key electronic features:
#### 1. Internal Circuitry
* **Commutation IC:** An integrated circuit controls the timing of the electromagnetic coils to rotate the permanent magnet rotor.
* **Protection Features:**
* **Locked Rotor Protection:** Prevents the motor from burning out if the blades are physically obstructed.
* **Polarity Protection:** Protects the internal PCB if the positive and negative leads are reversed.
#### 2. Wiring Configuration (3-Wire Interface)
The **-R00** suffix denotes a specific sensor output known as the **Lock Sensor** or **Failure Alarm**.
| Wire Color | Function | Description |
| :--- | :--- | :--- |
| **Red** | +24V DC | Power supply input. |
| **Black** | GND | Ground / Negative. |
| **White** | RD Signal | **Rotation Detector:** This signal stays "Low" when the fan is spinning and goes "High" if the fan stops. |
---
### Signal Logic (RD Signal)
The R00 suffix indicates an **Open Collector** output for the sensor.
* **Normal Operation:** The internal transistor is ON, pulling the signal to ground (Logic Low).
* **Fan Failure:** The internal transistor turns OFF, and an external pull-up resistor pulls the signal to the Vcc level (Logic High).
```python
# Conceptual Logic for monitoring the R00 signal
if fan_signal == HIGH:
trigger_alarm("Fan Failure Detected")
else:
status("Fan Operating Normally")
```
---
### Application Notes
* **Durability:** The dual ball bearing system is rated for roughly 70,000 hours at 40°C.
* **PWM Control:** Note that this specific model (-R00) lacks a 4th wire for PWM speed control; speed is managed strictly via voltage scaling.
---
- ⤷
What is the difference between an R00 (Lock Sensor) and an F00 (Tachometer) signal?
- ⤷ How do I calculate the correct pull-up resistor for the RD signal wire?
- ⤷ Can this fan be operated safely at 12V instead of 24V?