Description
The MC60 GSM/GPRS/GPS Arduino Shield from 7Semi is an ultimate solution for all your communication and positioning needs!
The MC60 module, featuring advanced MTK technology, provides outstanding performance with its quad-band GSM/GPRS/GPS connectivity, allowing you to connect to networks worldwide. With its compact size and low power consumption, the MC60 module is perfect for a wide range of applications, from asset tracking to remote monitoring and control.
Paired with the Arduino Shield, the MC60 module is even more versatile. The shield provides an easy-to-use interface for your Arduino board, allowing you to easily control and access the module's features. The shield also includes a SIM card slot and an onboard antenna, making it a complete solution for your communication and positioning needs.
-
Fully compatible with Arduino UNO R3, Arduino mega
-
Supports any Micro SIM.
-
High-efficiency power regulation.
-
Wide input voltage operating range 7V to 28V
-
GSM quad-band: 850/ 900/ 1800/ 1900MHz
-
Multi internet protocols: TCP/UDP/FTP/PPP/HTTP/NITZ/NTP/PING/HTTPS/TCP/SSL/MQTT
-
Optional Send/Receive AT commands over UART port is available
-
Support Voice, SMS, QuecFOTA, DSSS and QuecOpen.
-
Support Bluetooth SPP & HFP-AG profiles (BT 3.0)/
-
Multi navigation constellation: GPS/ GLONASS/ Galileo/ BeiDou/ QZSS.
-
GNSS receiver channels: 99 acquisition/ 33 tracking channels
-
Working temperature range: -40C ~ 80C.
With the MC60 GSM/GPRS/GPS Arduino Shield from 7Semi, you can easily add communication and positioning capabilities to your Arduino projects. Whether you need to track assets, monitor remote locations, or control devices, the MC60 module and Arduino Shield provide a powerful and easy-to-use solution. Don't miss out on this unbeatable combination!
Board Layout
Board Dimensions
- 1 x Eve GSM/GPRS/GNSS Bluetooth Shield
- 1 x Detachable GSM Antenna
- 1 x Detachable GPS Antenna
- 1 x CR1220 Battery
- 1 x 2 Pin power connector cable
- MC60 Documents
- MC60 GSM and GPS Shield User Guide
- MC60 GSM GPR SGPS Arduino Shield 3D STEP file
- Arduino code for send SMS
- Arduino code for receive SMS
- Arduino code for send-receive SMS
- QCOM_V1.6 for Windows
- QFlash_V4.19_EN for Windows
- Qnavigator_V1.6.9.1 for Windows
MC60 GSM/GPRS/GPS Arduino Code
#include <SoftwareSerial.h>
SoftwareSerial gsm(2, 3);
void setup()
{
Serial.begin(9600);
gsm.begin(9600);
}
void loop()
{
if(Serial.available()>0)
{
String data = Serial.readString();
Serial.println(data);
gsm.println(data);
}
if(gsm.available()>0)
{
String data = gsm.readString();
Serial.println(data);
}
}
Output with AT commands
AT
AT
OK
AT+QGNSSC=1
AT+QGNSSC=1
OK
AT+QIFGCNT=2
AT+QIFGCNT=2
OK
AT+QICSGP=1
AT+QICSGP=1
OK
AT+CREG?;+CGREG?
AT+CREG?;+CGREG?
+CREG: 0,0
+CGREG: 0,0
OK
AT+QGNSSTS?
AT+QGNSSTS?
+QGNSSTS: 1
OK
AT+QGNSSEPO=1
AT+QGNSSEPO=1
OK
AT+QGEPOAID
AT+QGEPOAID
OK
AT+QGNSSRD?
AT+QGNSSRD?
+QGNSSRD: $GNRMC,075122.000,A,1903.2739,N,07300.9712,E,1.84,233.46,110121,,,A*71
$GNVTG,233.46,T,,M,1.84,N,3.41,K,A*28
$GNGGA,075122.000,1903.2739,N,07300.9712,E,1,7,2.37,54.5,M,-63.0,M,,*51
$GPGSA,A,3,195,27,194,26,04,16,,,,,,,2.56,2.37,0.97*08
$GLGSA,A,3,73,,,,,,,,,,,,2.56,2.37,0.97*13
$GPGSV,4,1,15,03,60,213,,04,57,010,26,16,48,042,29,22,42,186,*71
$GPGSV,4,2,15,09,30,328,,27,28,113,19,07,25,282,,08,24,155,*7B
$GPGSV,4,3,15,194,20,051,16,26,17,038,25,193,12,130,19,195,11,094,31*49
$GPGSV,4,4,15,01,06,196,,21,02,176,,30,01,262,*41
$GLGSV,2,1,06,71,76,105,,74,55,329,,72,44,340,,70,26,145,*69
$GLGSV,2,2,06,73,23,023,18,65,03,332,*6C
$GNGLL,1903.2739,N,07300.9712,E,075122.000,A,A*49
OK
The GSM/GPRS/GPS Arduino Shield is an add-on board that can be mounted on an Arduino board to provide cellular communication and global positioning system (GPS) capabilities. This shield includes a GSM/GPRS module for wireless communication and a GPS module that can receive location data. The shield has a built-in antenna for the GSM module and an external antenna connector for the GPS module. With this shield, an Arduino board can be programmed to send and receive SMS messages, make phone calls, and access the internet over a cellular network. Additionally, the GPS module can be used to obtain the location of the device and track its movements. This shield is a useful tool for projects that require wireless communication and GPS functionality, such as vehicle tracking systems or remote monitoring devices.