HI @Doan298282,
Yes, there are some helpful guides you can follow to get the SIM7600E connected to the internet on a Raspberry Pi. Here are a couple of good starting points:
1. Waveshare Wiki (Official Guide)
Waveshare has a detailed setup guide for this module, including how to use PPP or the quectel-CM connection manager:
https://www.waveshare.com/wiki/SIM7600E-H_4G_HAT_for_Raspberry_Pi
Look for the “Getting Started” and “PPP” sections in particular. These walk through installing the required software and setting up a mobile data connection.
2. Core Electronics Tutorial
We also have a guide on using cellular modules with Raspberry Pi:
No worries at all, we’ll walk through it together step by step.
From what you’ve said, it sounds like the SIM7600E module is responding to AT commands, but it’s not getting an IP address, which usually means something in the setup isn’t quite finished yet.
To help figure it out, could you please try the following and let us know what happens?
Step 1: Confirm the SIM is working
In your AT command terminal, type:
AT+CPIN?
This should reply with:
+CPIN: READY
If it says something else (like SIM PIN required or not inserted), let us know.
Step 2: Check the signal strength
Type:
AT+CSQ
You’ll get a response like +CSQ: 15,99
The first number shows signal strength. Anything 10 or higher is usable.
If it’s below 10 or says 0, the module might not be picking up a mobile network.
Step 3: Check if it’s connected to the network
Type:
AT+COPS?
If the response shows a network name, that’s good.
If it’s empty or has an error, then it’s not registered.
Step 4: Try setting the APN
The module needs to know your SIM card provider’s APN. For Lycamobile, it’s usually:
AT+CGDCONT=1,"IP","data.lycamobile.com"
If you’re in a different country, the APN might be different — let us know and we’ll check it for you.
Once you’ve run these commands, let us know:
- What response you got for each step
- If anything showed an error or looked unusual
That will help us figure out exactly where the issue is and what to do next. You’re doing well so far.