

The T8S 2.4G Transmitter by RadioLink is a compact and versatile wireless transmitter designed for remote control applications. Operating in the 2.4 GHz frequency band, it ensures reliable and interference-resistant communication with compatible receivers. Its lightweight design and user-friendly interface make it ideal for controlling drones, RC cars, boats, and other remote-controlled devices.








The following table outlines the key technical details of the T8S 2.4G Transmitter:
| Specification | Details |
|---|---|
| Operating Frequency | 2.4 GHz |
| Modulation Type | DSSS (Direct Sequence Spread Spectrum) |
| Channels | 8 |
| Transmission Range | Up to 400 meters (line of sight) |
| Power Supply | 3.7V LiPo battery (not included) |
| Current Consumption | ≤ 100 mA |
| Dimensions | 159 mm x 97 mm x 50 mm |
| Weight | 210 g |
| Compatibility | Compatible with RadioLink receivers (e.g., R8EF, R8FM) |
The T8S 2.4G Transmitter does not have traditional pins like ICs or microcontrollers. Instead, it features the following key interfaces:
| Interface | Description |
|---|---|
| USB Port (Micro-USB) | For charging the internal battery and firmware updates. |
| Bind Button | Used to pair the transmitter with a compatible receiver. |
| Power Switch | Turns the transmitter on or off. |
| Control Sticks | Two joysticks for controlling movement and throttle. |
| Trim Buttons | Adjusts the trim for precise control. |
| Mode Switches | Configures the transmitter for different control modes. |
The T8S 2.4G Transmitter is a standalone device and does not require direct integration into a circuit. Instead, it communicates wirelessly with a compatible receiver. Follow these steps to use the transmitter:
Power On the Transmitter:
Bind the Transmitter to a Receiver:
Configure the Control Modes:
Test the Connection:
While the T8S 2.4G Transmitter does not directly interface with an Arduino, you can use a compatible receiver (e.g., R8EF) to receive signals and control an Arduino-based project. Below is an example of how to read PWM signals from the receiver:
// Example code to read PWM signals from a RadioLink receiver
// connected to an Arduino UNO
const int channelPin = 2; // Connect the receiver's signal pin to Arduino pin 2
volatile unsigned long pulseWidth = 0; // Variable to store pulse width
volatile unsigned long lastTime = 0; // Variable to store the last interrupt time
void setup() {
pinMode(channelPin, INPUT); // Set the channel pin as input
attachInterrupt(digitalPinToInterrupt(channelPin), readPulse, CHANGE);
Serial.begin(9600); // Initialize serial communication
}
void loop() {
// Print the pulse width (in microseconds) to the Serial Monitor
Serial.print("Pulse Width: ");
Serial.print(pulseWidth);
Serial.println(" us");
delay(100); // Delay for readability
}
// Interrupt service routine to measure pulse width
void readPulse() {
if (digitalRead(channelPin) == HIGH) {
// Rising edge detected, record the current time
lastTime = micros();
} else {
// Falling edge detected, calculate the pulse width
pulseWidth = micros() - lastTime;
}
}
The transmitter does not power on:
The receiver does not bind with the transmitter:
Intermittent signal loss:
Control sticks are unresponsive:
Q: Can I use the T8S transmitter with non-RadioLink receivers?
A: No, the T8S transmitter is designed to work exclusively with RadioLink receivers.
Q: How do I update the firmware?
A: Connect the transmitter to a computer using the Micro-USB port and follow the firmware update instructions provided by RadioLink.
Q: What is the maximum range of the T8S transmitter?
A: The transmitter has a maximum range of up to 400 meters in an open, line-of-sight environment.
Q: Can I use the T8S transmitter for FPV (First Person View) drones?
A: Yes, the T8S transmitter is suitable for FPV drones when paired with a compatible receiver and FPV system.
This concludes the documentation for the T8S 2.4G Transmitter. For further assistance, refer to the official RadioLink user manual or contact their support team.