

The Caddx Farsight (Manufacturer Part ID: MN13-0014B) is a high-definition FPV (First Person View) camera designed by CaddxFPV. It is tailored for drone racing, aerial photography, and other applications requiring real-time video transmission with low latency and superior image quality. This camera is a popular choice among drone enthusiasts and professionals due to its compact design, robust build, and excellent performance in various lighting conditions.








| Parameter | Specification |
|---|---|
| Manufacturer | CaddxFPV |
| Model | Farsight (MN13-0014B) |
| Image Sensor | 1/2.7" CMOS |
| Resolution | 1920 x 1080 (Full HD) |
| Lens | 2.1mm (FOV: 150°) |
| Video Format | NTSC/PAL switchable |
| Latency | < 10ms |
| Input Voltage | 5V - 40V |
| Power Consumption | ≤ 200mA @ 12V |
| Dimensions | 19mm x 19mm x 19mm |
| Weight | 8g |
| Operating Temperature | -20°C to 60°C |
The Caddx Farsight camera has a 4-pin connector for power, video output, and control.
| Pin Number | Pin Name | Description |
|---|---|---|
| 1 | GND | Ground connection |
| 2 | VCC | Power input (5V - 40V) |
| 3 | VIDEO | Analog video output |
| 4 | OSD | On-Screen Display control (for camera settings) |
The Caddx Farsight can be used with an Arduino UNO for basic control of the OSD settings. Below is an example code snippet for controlling the OSD pin.
// Example: Controlling the OSD pin of the Caddx Farsight using Arduino UNO
const int osdPin = 7; // Connect the OSD pin of the camera to Arduino pin 7
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 pin to simulate a control signal
digitalWrite(osdPin, HIGH); // Send a HIGH signal to the OSD pin
delay(1000); // Wait for 1 second
digitalWrite(osdPin, LOW); // Send a LOW signal to the OSD pin
delay(1000); // Wait for 1 second
}
No Video Output:
High Latency or Video Lag:
Blurry or Distorted Image:
Camera Overheating:
Q: Can the Caddx Farsight be used in low-light conditions?
Q: Is the camera compatible with all FPV transmitters?
Q: How do I switch between NTSC and PAL video formats?
Q: Can I use the camera with a 3.3V power source?
This concludes the documentation for the Caddx Farsight. For further assistance, refer to the manufacturer's user manual or contact CaddxFPV support.