The Caddx Ant FPV Camera is a lightweight, high-performance camera designed for use in remote-controlled (RC) vehicles, such as drones and FPV (First Person View) racing quads. With its 1200TVL resolution, global wide dynamic range (WDR), and on-screen display (OSD) capabilities, this camera delivers exceptional image quality and real-time telemetry data, even in challenging lighting conditions. Its ultra-lightweight design makes it ideal for applications where weight is a critical factor.
Below are the key technical details of the Caddx Ant FPV Camera:
Specification | Details |
---|---|
Resolution | 1200TVL |
Aspect Ratio | 16:9 |
Lens | 2.1mm |
Field of View (FOV) | 165° |
Image Sensor | 1/3" CMOS |
Wide Dynamic Range (WDR) | Global WDR |
Signal System | PAL/NTSC (switchable) |
Input Voltage | 3.7V - 18V |
Power Consumption | ≤200mA @ 5V |
Dimensions | 14mm x 14mm x 16mm |
Weight | 2g |
On-Screen Display (OSD) | Supported |
Operating Temperature | -20°C to 60°C |
The Caddx Ant FPV Camera features a 4-pin connector for power, video, and control. Below is the pinout:
Pin | Name | Description |
---|---|---|
1 | GND | Ground connection for power and signal. |
2 | VCC | Power input (3.7V - 18V). |
3 | VIDEO | Analog video output for FPV transmission. |
4 | OSD/Control | UART connection for OSD configuration and control. |
The Caddx Ant FPV Camera can be connected to an Arduino UNO for basic UART-based OSD configuration. Below is an example code snippet:
#include <SoftwareSerial.h>
// Define RX and TX pins for UART communication
#define RX_PIN 10
#define TX_PIN 11
// Initialize SoftwareSerial for communication with the camera
SoftwareSerial cameraSerial(RX_PIN, TX_PIN);
void setup() {
// Start serial communication with the camera
cameraSerial.begin(9600); // Default baud rate for the camera
Serial.begin(9600); // Serial monitor for debugging
// Send a sample command to the camera (e.g., change OSD settings)
cameraSerial.println("OSD:ENABLE"); // Enable OSD telemetry display
Serial.println("Sent command to enable OSD.");
}
void loop() {
// Check for incoming data from the camera
if (cameraSerial.available()) {
String response = cameraSerial.readString();
Serial.println("Camera Response: " + response);
}
}
Note: Refer to the camera's user manual for specific UART commands and baud rate settings.
No Video Output:
Blurry or Distorted Image:
OSD Not Displaying:
Overheating:
Q: Can I use this camera with a 2S or 4S LiPo battery?
Q: How do I switch between PAL and NTSC modes?
Q: Is the camera waterproof?
Q: Can I use this camera for night vision?