

The SIK Telemetry Radio is a wireless communication device designed for transmitting and receiving telemetry data. Manufactured by SIK, this module is widely used in applications requiring real-time data monitoring and control, such as drones, robotics, and remote sensing systems. It operates on a reliable frequency band and provides a robust communication link between devices, making it an essential component for telemetry-based systems.








The SIK Telemetry Radio is available in various configurations, typically consisting of an air module and a ground module. Below are the key technical details:
| Parameter | Value |
|---|---|
| Frequency Band | 433 MHz / 915 MHz (region-specific) |
| Communication Protocol | UART (Serial) |
| Transmission Power | Up to 100 mW (adjustable) |
| Range | Up to 1 km (line of sight) |
| Data Rate | Up to 250 kbps |
| Modulation | GFSK |
| Operating Voltage | 3.3V to 5V |
| Current Consumption | ~100 mA (transmitting) |
| Antenna Connector | RP-SMA |
| Dimensions | ~25 mm x 55 mm |
The SIK Telemetry Radio typically uses a 6-pin header for interfacing. Below is the pinout:
| Pin Number | Name | Description |
|---|---|---|
| 1 | GND | Ground connection |
| 2 | 5V | Power input (3.3V to 5V) |
| 3 | TX | Transmit data (connect to RX of host device) |
| 4 | RX | Receive data (connect to TX of host device) |
| 5 | CTS | Clear to Send (optional, for flow control) |
| 6 | RTS | Ready to Send (optional, for flow control) |
5V pin to a 3.3V or 5V power source and the GND pin to ground.TX pin of the module to the RX pin of the host device (e.g., Arduino, flight controller).RX pin of the module to the TX pin of the host device.Below is an example of how to use the SIK Telemetry Radio with an Arduino UNO for basic serial communication:
#include <SoftwareSerial.h>
// Define RX and TX pins for the telemetry radio
SoftwareSerial telemetryRadio(10, 11); // RX = Pin 10, TX = Pin 11
void setup() {
// Initialize serial communication with the telemetry radio
telemetryRadio.begin(57600); // Set baud rate to match the radio's configuration
Serial.begin(57600); // Initialize Serial Monitor at the same baud rate
Serial.println("SIK Telemetry Radio Test");
}
void loop() {
// Check if data is available from the telemetry radio
if (telemetryRadio.available()) {
char received = telemetryRadio.read(); // Read incoming data
Serial.print("Received: ");
Serial.println(received); // Print data to Serial Monitor
}
// Send data to the telemetry radio
if (Serial.available()) {
char toSend = Serial.read(); // Read data from Serial Monitor
telemetryRadio.write(toSend); // Send data to the telemetry radio
}
}
No Communication Between Modules
Short Communication Range
Module Not Powering On
Data Loss or Corruption
Q: Can I use the SIK Telemetry Radio with a Raspberry Pi?
Q: What is the maximum range of the SIK Telemetry Radio?
Q: How do I update the firmware on the SIK Telemetry Radio?
Q: Can I use multiple telemetry radios in the same area?
This concludes the documentation for the SIK Telemetry Radio. For further assistance, refer to the manufacturer's user manual or support resources.