7Semi LTE Communication module

Compact LTE Cat 1bis Module with UART Interface, LTE Connectivity, and External Antenna Support

The 7Semi EG800AK-CN LTE USB Dongle is a compact LTE Cat 1 communication module designed for rapid cellular connectivity, AT command testing, IoT development, telemetry applications, remote monitoring, and embedded system integration. Built around the Quectel EG800AK-CN LTE modem, the board combines LTE communication, SIM card support, onboard USB connectivity, and UART breakout pins in a convenient USB dongle form factor. Whether you are testing AT commands directly from a PC, integrating LTE into an Arduino project, or developing industrial IoT solutions, the 7Semi EG800AK-CN provides a simple and reliable cellular communication platform.
| Parameter | Value |
|---|---|
| Product category | LTE Communication module |
| Operational voltage | 5V DC TO 26V DC |
| Download speed | upto 10Mbps |
| Upload speed | up to 5mbps |
| LTE-FDD Bands | B1,B3,B5,B8 |
| LTE-TDD Bands | B34, B38, B39, B40, B41 |
| Communication | UART |
| Suported protocol | MQTT, TCP/IP, HTTP, HTTPS, UDP |
| Operating temprature | -35°C to +60°C |
| Dimension | L=54mm W=18mm H=7.91mm |

| # | Pin | Description |
|---|---|---|
| 1 | VIN | Power 5V DC to 26V DC |
| 2 | GND | Ground |
| 3 | RX | UART receive pin |
| 4 | TX | UART transmit pin. |


#include <SoftwareSerial.h>
SoftwareSerial eg800(2, 3); // RX, TX
void setup()
{
Serial.begin(115200); // Serial Monitor
eg800.begin(115200); // EG800 Module
Serial.println("EG800 Ready");
Serial.println("Type AT commands below...");
}
void loop()
{
// EG800 -> Serial Monitor
while (eg800.available())
{
Serial.write(eg800.read());
}
// Serial Monitor -> EG800
while (Serial.available())
{
eg800.write(Serial.read());
}
}

Dimensions: L=54mm W=18mm H=7.91mm

The EG800AK-CN is an LTE Cat 1 cellular communication module designed for IoT, industrial automation, telemetry, asset tracking, remote monitoring, smart agriculture, and cloud-connected embedded systems.
Open a serial terminal and send: AT Expected response: OK This indicates that the module is powered and communicating correctly.
Possible causes include: Incorrect baud rate TX/RX wiring reversed Insufficient power supply Missing common ground connection Module still booting Verify all hardware connections before testing again.