ArduinoGeneral

GPS\GPRS\GSM v3.0 need help

userHead SERVODROID 2013-08-01 10:03:30 4862 Views7 Replies
Hello everyone!

I must say that in my text will otshibki, because I am writing from Russia, using the Google translator ...

I have this module, version 3 GPS-GPRS-GSM and Arduino UNO (vDIP).

The problem is this - does not work call, sms, gps ...
What do the steps:

1. Following the example in which the need to manually send SMS \ make a call

CODE
[code]// Product name: GPS/GPRS/GSM Module V3.0
// # Product SKU : TEL0051
// # Version : 0.1

// # Description:
// # The sketch for driving the gsm mode via the Arduino board

// # Steps:
// # 1. Turn the S1 switch to the Prog(right side)
// # 2. Turn the S2 switch to the Arduino side(left side)
// # 3. Take off the GSM/GPS jumper caps from the Uart select
// # 4. Upload the sketch to the Arduino board
// # 5. Turn the S1 switch to the comm(left side)
// # 6. Plug the jumper caps back to GSM side
// # 7. RST the board

// # wiki link- http://www.dfrobot.com/wiki/index.php/GPS/GPRS/GSM_Module_V3.0_(SKU:TEL0051)

byte gsmDriverPin[3] = {
3,4,5};//The default digital driver pins for the GSM and GPS mode
//If you want to change the digital driver pins
//or you have a conflict with D3~D5 on Arduino board,
//you can remove the J10~J12 jumpers to reconnect other driver pins for the module!

void setup()
{
//Init the driver pins for GSM function
for(int i = 0 ; i < 3; i++){
pinMode(gsmDriverPin[i],OUTPUT);
}
digitalWrite(5,HIGH);//Output GSM Timing
delay(1500);
digitalWrite(5,LOW);
digitalWrite(3,LOW);//Enable the GSM mode
digitalWrite(4,HIGH);//Disable the GPS mode
delay(2000);
Serial.begin(9600); //set the baud rate
delay(5000);//call ready
delay(5000);
delay(5000);
}

void loop()
{
Serial.println("AT");//Send AT command
delay(2000);
Serial.println("AT");
delay(2000);
//Make a phone call
Serial.println("ATD15902808530;");//Change the receiver phone number
while(1);
}[/code]


2. Install before flashing jumpers and switch to a specified position in the image (as in the instructions)

PHOTO1


3. Sews Arduino.

4. Change to S1 mode "comm".
5. Switch to GSM

PHOTO2

MK reboot, connected via COM port and watch this garbage ...

foto3


------
Somebody show me the instructions, step-by-step with pictures or video lesson in which I would clearly see that it works. Tried all examples - none of them earned, though like everything as instructed. Help!
2013-08-02 21:09:33 [quote="SERVODROID"]
- ??? ? ???? ???????? ! ??????? ))  ;)
[/quote]

:-\  What is that?

[quote="N4rf"]
USB current is not enough to power shield. Please attach external power supply. At least 500mA. 700mA recomended.
[/quote]

Hows your project going N4rf?

I attached a proximity sensor the other day to the GSM shield setup and coded to send me a message. Kind of like a trip wire, for my cat. Bad idea! hahaha i got my phone flooded haha 
userHeadPic Jose
2013-08-02 12:10:35 USB current is not enough to power shield. Please attach external power supply. At least 500mA. 700mA recomended.
userHeadPic N4rf
2013-08-02 10:08:31 [quote]remember you need a power supply, USB power is not enough.
[/quote]

- ??? ? ???? ???????? ! ??????? ))  ;)
userHeadPic SERVODROID
2013-08-01 19:54:32 [quote="SERVODROID"]
I do not understand the stages of switching these jumpers - J12, J11, J10, that they are backup switch is a three-section - UART, GSM, GPS? Steps in pictures proelyustriruyte please!
[/quote]
maybe this help,
[img]https://www.dfrobot.com/wiki/images/4/46/GSMGPSswitchdiagram.png[/img]

remember you need a power supply, USB power is not enough.
take a look at the wiki:
[url=https://www.dfrobot.com/forum/index.php?topic=863.msg4013;topicseen#new]https://www.dfrobot.com/forum/index.php?topic=863.msg4013;topicseen#new[/url]
userHeadPic Jose
2013-08-01 11:14:35 Day spent in vain  :(  ... userHeadPic SERVODROID
2013-08-01 11:12:16 I do not understand the stages of switching these jumpers - J12, J11, J10, that they are backup switch is a three-section - UART, GSM, GPS? Steps in pictures proelyustriruyte please! userHeadPic SERVODROID
2013-08-01 10:20:02 I get the same problem with this tool  :'( , if there is growth in the post please bro :( userHeadPic karaeng_android