AI

The **CT01** typically refers to a standard **Capacitive Touch Sensor Module** (often based on the TTP223 touch IC). These modules are widely used in consumer electronics, DIY projects, and industrial panels to replace traditional mechanical buttons.
---
## 1. Core Electronic Components
A standard CT01 module consists of several key Surface Mount Devices (SMD):
| Component | Description | Function |
| :--- | :--- | :--- |
| **TTP223 IC** | The "Brain" of the module. | A CMOS floating-gate capacitive touch sensor controller. |
| **Detection Pad** | Large copper area on the PCB. | Acts as one plate of a capacitor; senses change in capacitance when a finger nears. |
| **Capacitor (C1)** | Typically 0-50pF. | Adjusts the sensitivity of the touch pad. |
| **Indicator LED** | SMD Light Emitting Diode. | Provides visual feedback when a touch is detected. |
| **Jumpers (A & B)** | Solder bridges. | Configures output mode (Active High/Low) and Trigger mode (Toggle/Direct). |
---
## 2. Technical Specifications
Understanding the electrical limits is crucial for integrating the CT01 into a circuit.
* **Operating Voltage:** 2.0V to 5.5V DC.
* **Current Consumption:** Very low (typical 1.5uA in low power mode, 3.0uA at 3V).
* **Response Time:** ~60ms in fast mode; ~220ms in low power mode.
* **Output Current:** ~8mA (max) at 3V.
---
## 3. Configuration Modes (Jumper Settings)
The CT01 module features two solder pads (often labeled **A** and **B**) that change how the electronics behave:
| Jumper A (Output Level) | Jumper B (Output Mode) | Resulting Behavior |
| :--- | :--- | :--- |
| **Open** | **Open** | Direct mode, Active High (High when touched). |
| **Closed** | **Open** | Direct mode, Active Low (Low when touched). |
| **Open** | **Closed** | Toggle mode, Active High (Latched like a light switch). |
| **Closed** | **Closed** | Toggle mode, Active Low (Latched, inverted signal). |
---
## 4. Connection Pinout
The module interface is standardized for easy wiring:
```markdown
1. VCC: Power supply (2.0V - 5.5V)
2. I/O: Digital Output signal (connects to MCU or Relay)
3. GND: Ground
```
---
## 5. Circuit Application Example
The CT01 can be used to trigger an Arduino input. Below is the basic logic representation:
```cpp
const int touchPin = 2; // Connected to CT01 I/O
const int ledPin = 13; // Internal LED
void setup() {
pinMode(touchPin, INPUT);
pinMode(ledPin, OUTPUT);
}
void loop() {
int touchState = digitalRead(touchPin);
if (touchState == HIGH) {
digitalWrite(ledPin, HIGH); // Light up LED if touched
} else {
digitalWrite(ledPin, LOW);
}
}
```
- ⤷
How do I increase the touch sensitivity of the CT01 module?
- ⤷ Can the CT01 detect touch through glass or plastic materials?
- ⤷ What is the difference between the TTP223 and TTP229 touch ICs?