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

Preparation

  1. Insert SIM800H module onto Arduino UNO or any other Arduino card;
  2. Connect UNO with computer through USB cable
  3. Connect UNO power jack with an external power supply, 6-12V @ >500mA.
  4. Set the swith to USB.
  5. 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.

TEL0089_ATmode_moniU

Was this article helpful?

TOP