Usage Example for Serial Assistant-AT Mode-V1.0
Last revision 2026/01/24
This article offers a comprehensive guide on setting up and using Serial Assistant in AT Mode, featuring the SIM800H GSM/GPRS Shield and Arduino UNO, complete with detailed hardware and software preparation steps, sample Arduino code, and troubleshooting tips.
Hardware Preparation
Software Preparation
- Download and install the driver: Click to download driver
Preparation
- Insert SIM800H module onto Arduino UNO or any other Arduino card;
- Connect UNO with computer through USB cable
- Connect UNO power jack with an external power supply, 6-12V @ >500mA.
- Set the swith to USB.
- Upload the sketch below,or press the button boot for 2 seconds
void setup() {
//Set pin 12 as output
pinMode(12, OUTPUT);
//GSM power on sequence
digitalWrite(12, HIGH);
delay(2000);
digitalWrite(12, LOW);
}
void loop() {
}
Other Preparation Work
Open the serial monitor or other Serial Assistant software.
Choose "Both NL & CR".
Result
Wait for the NET led to blink as finding net, then you could send some AT commands.
Otherwise please check the external power supply/ SIM card/ switch position, and then RESET the module.

Was this article helpful?
