AirCast

SIM7600G-H 4G HAT (B) Setup Guide

Complete guide for setting up a SIM7600G-H 4G HAT (B) as your AirCast 4G modem device.

SIM7600G-H 4G HAT (B)

Required Components

  • Raspberry Pi 4 or Zero 2w
  • 16GB+ microSD card (Class 10 required)
  • Active cooling case or heat sink with fan
  • SIM card with active data plan

Hardware Connection

Follow the connection diagram below to properly connect your SIM7600G-H 4G HAT to your Raspberry Pi.

SIM7600G-H 4G HAT Connection Example

Software Configuration

1. Connect Modem

Connect the modem to your Raspberry Pi using USB. The modem will appear as /dev/ttyUSB2 device.

ls /dev/ttyUSB*

2. Install Minicom

sudo apt-get install minicom

3. Basic Modem Checks

sudo minicom -D /dev/ttyUSB2

Check if modem is responding:

AT

Expected response: OK

Check SIM card status:

AT+CPIN?

Expected response: +CPIN: READY

Check signal strength:

AT+CSQ

4. Configure APN

Set the APN for your mobile carrier:

AT+CGDCONT=1,"IP","Your_APN"

5. Configure USB Mode

Send the following command through minicom and wait for the module to restart:

AT+CUSBPIDSWITCH=9011,1,1
CUSBPIDSWITCH Command Example

6. Network Setup

Check network interfaces:

ifconfig
ifconfig Command Output

Configure DHCP for the USB interface:

sudo dhclient -v usb0
dhclient Command Output

Troubleshooting

LED Status Issues

  • Solid LED indicates configuration problem
  • Check power supply and connections
  • Verify AT commands were successful

Modem Not Detected

  • Check USB connections
  • Verify power supply is adequate
  • Ensure kernel modules are loaded

No Network Connection

  • Verify SIM card is properly inserted
  • Check signal strength (AT+CSQ)
  • Confirm APN settings are correct
  • Try power cycling the modem

Poor Performance

  • Check antenna connection
  • Verify signal strength
  • Monitor temperature for thermal throttling
  • Test in different physical locations

Support Resources