Last active
October 5, 2018 05:17
-
-
Save ghazanhaider/e3da5091a912e2e979fe221a7a0df0b8 to your computer and use it in GitHub Desktop.
SIM900 AT commands
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Basic Checks | |
AT+COPS? // Show network operator | |
AT+COPN // All network operators | |
# SMS | |
AT+CMFG=1 // Enable txt mode SMS | |
AT+CMGS="+NUMBER" // Start SMS to this number, end in 0x1a (no newline) | |
AT+CMGR=1 // Receive and read SMS | |
AT+CMGD=1 // Delete this SMS message | |
# Short GPRS commands (lots of wait states between commands) | |
AT+CIPSHUT | |
AT+CIPMUX=0 | |
AT+CGATT=1 | |
AT+CSTT="internet.fido.ca","fido","fido" | |
AT+CIICR | |
AT+CIFSR | |
AT+CIPSTART=”TCP”,”52.206.151.197″,”1000” | |
AT+CIPCLOSE | |
AT+CIPSHUT |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment