Product Overview
The 7Semi MC60 GSM/GPRS/GPS Arduino Shield emerges as an unparalleled answer to address your communication and location requirements!
Leveraging advanced MTK technology, the MC60 module delivers exceptional performance, boasting quad-band GSM/GPRS/GPS connectivity that enables global network access. Its petite form factor and minimal power consumption make the MC60 module exceptionally suitable for diverse applications, ranging from monitoring and control in remote environments to tracking valuable assets.
When coupled with the Arduino Shield, the MC60 module attains heightened versatility. The shield offers a user-friendly interface for your Arduino board, streamlining the control and utilization of the module's functionalities. Equipped with a SIM card slot and an integrated antenna, the shield stands as a comprehensive solution catering to your communication and positioning requisites.
-
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
Warranty Information
Specifications
- Dimensions:
- 82.5 x 52 x 14 mm
- Power Supply:
- Operates through External supply 7V – 28V
- Micro Sim Card Connector:
- Yes
- Arduino Stackable Connector:
- 2 x 8 pin,1 x 6 pin,1 x 10pin 2.54mm pitch
- External Power Connector:
- 2-pin 2mm pitch JST Connector
- GNSS & GSM Antenna Connectors:
- 2 x Right angle female SMA connector
- CR1220 SMD Battery Holder:
- CR1220 Button coin cell battery
- Audio Connector:
- 3.5mm TRRS Audio Jack
Reviews