

The Caddx Ratel 2 1200TVL is a high-performance FPV (First Person View) camera designed for drone racing, freestyle flying, and other applications requiring high-resolution video. With its 1200TVL resolution, the camera delivers sharp and clear video quality, even in low-light conditions. It also features an integrated On-Screen Display (OSD) for overlaying real-time telemetry data, making it a versatile choice for FPV enthusiasts.








Below are the key technical details of the Caddx Ratel 2 1200TVL camera:
| Parameter | Value |
|---|---|
| Manufacturer | Caddx |
| Model | Ratel 2 1200TVL |
| Resolution | 1200TVL |
| Image Sensor | 1/1.8" HDR Sensor |
| Lens | 1.66mm (FOV 165°) |
| Signal System | PAL/NTSC (switchable) |
| Minimum Illumination | 0.0001 Lux |
| Input Voltage | 5V - 40V |
| Power Consumption | ≤200mA @ 12V |
| Dimensions | 19mm x 19mm x 20mm |
| Weight | 5.9g |
| Operating Temperature | -20°C to 60°C |
The camera has a 4-pin connector for power, video output, and OSD control. The pinout is as follows:
| Pin Number | Name | Description |
|---|---|---|
| 1 | GND | Ground connection |
| 2 | VCC | Power input (5V - 40V) |
| 3 | VIDEO | Analog video output |
| 4 | OSD Control | UART connection for OSD configuration |
Below is an example of how to connect the camera to an Arduino UNO for basic UART communication to configure the OSD:
#include <SoftwareSerial.h>
// Define RX and TX pins for SoftwareSerial
SoftwareSerial cameraOSD(10, 11); // RX = Pin 10, TX = Pin 11
void setup() {
// Initialize serial communication with the camera
cameraOSD.begin(9600); // Baud rate for OSD communication
Serial.begin(9600); // Serial monitor for debugging
Serial.println("Camera OSD Configuration Started");
}
void loop() {
// Example: Send a command to the camera (replace with actual commands)
cameraOSD.println("SET_OSD:ON"); // Turn on OSD (example command)
// Check for responses from the camera
if (cameraOSD.available()) {
String response = cameraOSD.readString();
Serial.println("Camera Response: " + response);
}
delay(1000); // Wait 1 second before sending the next command
}
"SET_OSD:ON" with actual OSD configuration commands as per the camera's protocol.No Video Output
OSD Not Displaying
Poor Video Quality
Camera Overheating
Q1: Can the camera be powered directly from a 4S LiPo battery?
A1: Yes, the camera supports an input voltage range of 5V to 40V, making it compatible with 4S LiPo batteries (14.8V nominal).
Q2: How do I switch between PAL and NTSC modes?
A2: The camera has a built-in switch or menu option to toggle between PAL and NTSC. Refer to the user manual for detailed instructions.
Q3: Is the camera waterproof?
A3: No, the camera is not waterproof. Avoid exposing it to water or moisture.
Q4: Can I use this camera with a DVR for recording?
A4: Yes, the camera's analog video output can be connected to a DVR for recording purposes.
By following this documentation, users can effectively integrate and operate the Caddx Ratel 2 1200TVL camera in their projects.