

The TS832 Transmitter by AKK (Part ID: VTX) is a 5.8GHz wireless video transmitter designed for long-distance video signal transmission. It is widely used in First Person View (FPV) applications, such as drones, RC vehicles, and other remote-controlled systems. The TS832 provides a reliable, high-quality video transmission with adjustable power output and multiple selectable channels, ensuring minimal interference and optimal performance.








| Parameter | Specification |
|---|---|
| Operating Frequency | 5.8GHz |
| Channels | 40 selectable channels |
| Output Power | Adjustable: 600mW |
| Input Voltage | 7V - 24V DC |
| Current Consumption | 220mA at 12V |
| Video Input Format | NTSC/PAL |
| Antenna Connector | RP-SMA Male |
| Dimensions | 54mm x 32mm x 10mm |
| Weight | 21g |
| Operating Temperature | -10°C to 85°C |
| Transmission Range | Up to 5km (line of sight, with proper antenna) |
The TS832 Transmitter has a 5-pin connector for power and video input. Below is the pinout:
| Pin Number | Label | Description |
|---|---|---|
| 1 | GND | Ground connection |
| 2 | +V IN | Power input (7V - 24V DC) |
| 3 | VIDEO IN | Composite video input |
| 4 | AUDIO IN L | Left audio channel input |
| 5 | AUDIO IN R | Right audio channel input |
While the TS832 is not directly controlled by an Arduino, you can use an Arduino to switch the transmitter on/off or control peripherals like cameras. Below is an example of using an Arduino to toggle the TS832 power via a relay:
// Example: Controlling TS832 power with Arduino and a relay module
const int relayPin = 7; // Pin connected to the relay module
void setup() {
pinMode(relayPin, OUTPUT); // Set relay pin as output
digitalWrite(relayPin, LOW); // Ensure relay is off at startup
}
void loop() {
// Turn on the TS832 transmitter
digitalWrite(relayPin, HIGH);
delay(10000); // Keep transmitter on for 10 seconds
// Turn off the TS832 transmitter
digitalWrite(relayPin, LOW);
delay(5000); // Keep transmitter off for 5 seconds
}
| Issue | Possible Cause | Solution |
|---|---|---|
| No video signal on the receiver | Incorrect wiring or loose connections | Verify all connections and wiring. |
| Overheating during operation | Insufficient cooling or ventilation | Add a heat sink or improve airflow. |
| Poor video quality or interference | Channel conflict or weak antenna signal | Change channel or use a better antenna. |
| No power to the transmitter | Incorrect power supply | Ensure input voltage is 7V - 24V DC. |
| Antenna not transmitting properly | Antenna not connected or damaged | Check and replace the antenna. |
Can I use the TS832 with a 5V power source?
What is the maximum range of the TS832?
How do I select a channel on the TS832?
Can the TS832 transmit audio and video simultaneously?
Is the TS832 compatible with all 5.8GHz receivers?
This concludes the documentation for the TS832 Transmitter. For further assistance, refer to the official datasheet or contact AKK support.