DSCKGEC/cleanurge-mcu

AT Commands to configure the GPRS module

Open

#7 opened on Jun 7, 2021

 (3 comments) (1 reaction) (2 assignees)C++ (7 forks)auto 404
easygood first issuehelp wanted

Repository metrics

Stars
 (6 stars)
PR merge metrics
 (PR metrics pending)

Description

SIM800L supports General Packet Radio Service (GPRS) for connecting to the internet with HTTP. The module has built in TCP/IP stack that can be accessed with AT commands. This can be very handy for persistent data logging on low bandwidth networks. Before we can get further into depths, we'll assure the AT commands to make a HTTP GET request to fetch a simple page and then use the library.

For doing so we'll need to hook up the MCU(in this case I'm considering Arduino UNO) with GPRS Module:

image

Follow this code to initiate your Module: https://github.com/anubhav666/Setting-up-GPRS-Module-SIM-800L/blob/main/Basic_GPRS.ino

Here below are a few AT commands to establish a GET request: image

Contributor guide