Forum >Initialize sim808 module
ArduinoGeneral

Initialize sim808 module

userHead ddahlman 2017-10-27 19:03:01 5505 Views4 Replies
Error on trying to initialize the sim808
Here is the code I am using, it fails on the
//******** Initialize sim808 module *************

/*
### Get GPS data
1. This example is used to test SIM808 GPS/GPRS/GSM Shield's reading GPS data.
2. Open the SIM808_GetGPS example or copy these code to your project
3. Download and dial the function switch to Arduino
4. open serial helper
4. Place it outside, waiting for a few minutes and then it will send GPS data to serial
*/



#include <DFRobot_sim808.h>
#include <SoftwareSerial.h>

//#define PIN_TX 10
//#define PIN_RX 11
//SoftwareSerial mySerial(PIN_TX,PIN_RX);
//DFRobot_SIM808 sim808(&mySerial);//Connect RX,TX,PWR,

DFRobot_SIM808 sim808(&Serial);



void setup() {
//mySerial.begin(9600);
Serial.begin(9600);

//******** Initialize sim808 module *************
while(!sim808.init()) {
delay(1000);
Serial.print("Sim808 init error\r\n");
}

//************* Turn on the GPS power************
if( sim808.attachGPS())
Serial.println("Open the GPS power success");
else
Serial.println("Open the GPS power failure");

}

void loop() {
//************** Send the coordinates(latitude&lonitude)in the Serial Monitor *******************
if (sim808.getGPS()) {

Serial.print("latitude :");
Serial.println(sim808.GPSdata.lat);
Serial.print("longitude :");
Serial.println(sim808.GPSdata.lon);

}

}
2021-12-28 06:30:28 google userHeadPic ufc28496
2017-11-06 11:30:46 I have insert a sim card with PIN code disabled and it works now. Apparently SIM card is needed even when you use only the GPS functionality. userHeadPic mihov
2017-11-04 13:17:26 Hi ddahlman, I have exactly the same problem and I have read some other replys in different forums, but without success. Did you make any progress? userHeadPic mihov
2017-10-27 19:41:05 How do you get tech support for these modules userHeadPic ddahlman