

The Radiomaster ER8G 2.4GHz ELRS PWM Receiver is a compact and lightweight receiver designed for use with ExpressLRS (ELRS) systems. Operating at a 2.4GHz frequency, it delivers reliable Pulse Width Modulation (PWM) output, making it ideal for controlling a variety of remote-controlled (RC) devices such as drones, RC cars, boats, and planes. Its low latency and high responsiveness ensure smooth and precise communication between the transmitter and the receiver.








| Parameter | Value |
|---|---|
| Operating Frequency | 2.4GHz |
| Protocol | ExpressLRS (ELRS) |
| Number of Channels | 8 PWM Channels |
| Input Voltage Range | 5V - 10V |
| Output Signal Type | PWM |
| Latency | Ultra-low (as low as 5ms) |
| Dimensions | 35mm x 20mm x 10mm |
| Weight | 5g |
| Antenna Type | External, IPEX connector |
| Binding Method | ELRS binding phrase or button |
The Radiomaster ER8G receiver features a standard pin header for easy connection to servos, ESCs, or other devices. Below is the pinout:
| Pin Number | Label | Description |
|---|---|---|
| 1 | CH1 | PWM output for Channel 1 |
| 2 | CH2 | PWM output for Channel 2 |
| 3 | CH3 | PWM output for Channel 3 |
| 4 | CH4 | PWM output for Channel 4 |
| 5 | CH5 | PWM output for Channel 5 |
| 6 | CH6 | PWM output for Channel 6 |
| 7 | CH7 | PWM output for Channel 7 |
| 8 | CH8 | PWM output for Channel 8 |
| 9 | VCC | Power input (5V - 10V) |
| 10 | GND | Ground |
Powering the Receiver:
Connecting to Servos or ESCs:
Binding the Receiver:
Configuring Channels:
Testing:
The Radiomaster ER8G can be used with an Arduino UNO to read PWM signals. Below is an example code snippet:
// Example: Reading PWM signal from Channel 1 of the Radiomaster ER8G
// Connect CH1 to Arduino pin 2, and GND to Arduino GND.
const int pwmPin = 2; // Pin connected to CH1
unsigned long pulseWidth; // Variable to store pulse width
void setup() {
pinMode(pwmPin, INPUT); // Set pin as input
Serial.begin(9600); // Initialize serial communication
}
void loop() {
// Measure the duration of the HIGH state of the PWM signal
pulseWidth = pulseIn(pwmPin, HIGH);
// Print the pulse width in microseconds
Serial.print("Pulse Width: ");
Serial.print(pulseWidth);
Serial.println(" us");
delay(100); // Small delay for readability
}
Receiver Not Binding to Transmitter:
No Response from Connected Devices:
Signal Interference or Dropouts:
Receiver Overheating:
Q1: Can I use the Radiomaster ER8G with a 3.3V power source?
A1: No, the receiver requires a minimum of 5V for proper operation.
Q2: How many devices can I connect to the receiver?
A2: You can connect up to 8 devices, one per PWM channel.
Q3: Is the receiver compatible with other protocols like DSMX or FrSky?
A3: No, the Radiomaster ER8G is specifically designed for the ExpressLRS protocol.
Q4: Can I use this receiver for telemetry?
A4: No, the Radiomaster ER8G is a PWM receiver and does not support telemetry features.
This concludes the documentation for the Radiomaster ER8G 2.4GHz ELRS PWM Receiver. For further assistance, refer to the official Radiomaster support resources.