Technical Specifications
Warranty Information
All the products supplied by Evelta are genuine and original. We offer 14 days replacement warranty in case of manufacturing defects. For more details, please visit our cancellation and returns page.
All the products supplied by Evelta are genuine and original. We offer 14 days replacement warranty in case of manufacturing defects. For more details, please visit our cancellation and returns page.
The 7Semi MC60 GSM/GPRS/GPS Arduino Shield is a compact, high-performance module engineered to extend your Arduino’s capabilities with wireless communication and GNSS positioning. This advanced shield supports GSM, GPRS, and multi-constellation GNSS technologies, making it ideal for remote IoT deployments, asset tracking, telematics, and environmental monitoring. With seamless compatibility for Arduino UNO R3 and Arduino Mega boards, this shield delivers reliable, real-time data transfer and geo-positioning functionalities across global cellular networks.
Equipped with a quad-band GSM module and robust GPS capabilities, the shield ensures uninterrupted communication and precise location data in diverse environments. Integrated protocols including TCP, UDP, HTTP, HTTPS, and MQTT allow developers to create secure, scalable, and cloud-connected solutions. The onboard Micro SIM slot, integrated antenna, and wide voltage input (7V to 28V) make it deployment-ready across industries like logistics, agriculture, smart cities, and automotive telemetry.
Global GSM/GPRS Connectivity: Supports 850/900/1800/1900 MHz frequencies for worldwide mobile access
Multi-GNSS Support: Tracks GPS, GLONASS, Galileo, BeiDou, and QZSS constellations for accurate navigation
Integrated Internet Protocols: Full support for TCP/UDP/FTP/PPP/HTTP/NITZ/NTP/PING/HTTPS/TCP/SSL/MQTT ensures maximum flexibility
Arduino-Compatible: Plug-and-play support with Arduino UNO R3 and Arduino Mega
High-Precision GNSS Receiver: 99 acquisition and 33 tracking channels for enhanced performance
Firmware Over-the-Air (QuecFOTA): Remote software updates simplify device maintenance
Bluetooth 3.0 Connectivity: Supports SPP and HFP-AG profiles for wireless control and communication
Wide Operating Temperature: Reliable from -40°C to +80°C, suitable for outdoor and industrial use
Power-Efficient Design: Operates from 7V to 28V with built-in voltage regulation
Micro SIM Support: Enables mobile network integration with any standard Micro SIM card
Onboard Antenna: No external antenna required, simplifying hardware setup
AT Command Support: Access advanced module control through UART interface
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
I had a few questions about this shield and they answered them very quickly and with expertise. Thanks!