

The Analog Cam CADDX RATEL 2 is a specialized analog camera designed for high-resolution imaging and data acquisition. It features advanced optics and customizable settings, making it ideal for applications requiring superior image quality and performance. This camera is widely used in FPV (First Person View) drones, surveillance systems, robotics, and other imaging-related projects. Its robust design and adaptability make it a popular choice for both hobbyists and professionals.








The CADDX RATEL 2 offers a range of technical features that ensure high-quality imaging and reliable performance. Below are the key specifications and pin configuration details:
| Parameter | Specification |
|---|---|
| Image Sensor | 1/1.8" Starlight HDR Sensor |
| Resolution | 1200TVL |
| Lens | 2.1mm (M12) |
| Field of View (FOV) | 165° (Diagonal) |
| Signal System | PAL/NTSC (Switchable) |
| Minimum Illumination | 0.0001 Lux |
| Input Voltage | 5V - 40V |
| Power Consumption | ≤200mA @ 12V |
| Dimensions | 19mm x 19mm x 19mm |
| Weight | 5.5g |
| Operating Temperature | -20°C to 60°C |
The CADDX RATEL 2 has a standard pinout for connecting to power, video output, and control systems. Below is the pin configuration:
| Pin Number | Label | Description |
|---|---|---|
| 1 | GND | Ground connection |
| 2 | VCC | Power input (5V - 40V) |
| 3 | VIDEO | Analog video output |
| 4 | OSD | On-Screen Display control input |
| 5 | MENU | Menu control for camera settings |
The CADDX RATEL 2 is straightforward to use in a variety of circuits and systems. Follow the steps below to integrate it into your project:
VCC pin to a power source within the range of 5V to 40V. Ensure the power supply is stable to avoid damage to the camera.GND pin to the ground of your circuit.VIDEO pin to the video input of your display or video transmitter.OSD pin to the OSD controller.MENU pin to access and adjust camera settings via the provided control board or joystick.The CADDX RATEL 2 can be used with an Arduino UNO for basic control and integration. Below is an example of how to read the video signal and control the OSD menu:
VCC pin to the Arduino's 5V output.GND pin to the Arduino's GND.VIDEO pin to an external video receiver or display.OSD pin to a digital pin on the Arduino (e.g., D2).// Example code to control the OSD menu of the CADDX RATEL 2 using Arduino UNO
const int osdPin = 2; // OSD control pin connected to Arduino digital pin 2
void setup() {
pinMode(osdPin, OUTPUT); // Set the OSD pin as an output
digitalWrite(osdPin, LOW); // Initialize the OSD pin to LOW
}
void loop() {
// Example: Toggle the OSD menu on and off
digitalWrite(osdPin, HIGH); // Send a HIGH signal to activate OSD
delay(500); // Wait for 500ms
digitalWrite(osdPin, LOW); // Send a LOW signal to deactivate OSD
delay(500); // Wait for 500ms
}
Note: The Arduino cannot process the analog video signal directly. Use an external video receiver or display for video output.
No Video Output
Blurry Image
OSD Menu Not Responding
OSD pin or incorrect control signals.OSD pin and ensure the control signals are being sent correctly.Overheating
Q: Can the CADDX RATEL 2 be used in low-light conditions?
Q: How do I switch between PAL and NTSC modes?
Q: Is the camera compatible with digital video systems?
Q: Can I use a 3.3V power supply?