Arduino UNO with SIM7600
I am using the Arduino UNO for monitoring holiday houses (AC, water leaks etc)
Until now I used G GSM shields Elcrow from DF) without any problems
With the just bought SIM7600 shield I do have problems with the communication with the board.
I do get rubbisch as answer:
GSM is not Ready :
AT+CSTCC⸮⸮⸮⸮T'⸮⸮b⸮⸮j
or
incoming
+CMT: "+32495592615","","23/`3/29,09:41:57+08"
Sta⸮us
I tried to change the speeds to lower than 115200 Bd but then I do not get only ????????????? answers
Can anybody help me out with this
this is the basic test code to check communication
#include <SoftwareSerial.h>
SoftwareSerial myserial(2, 3); //used extra wiring to connect RX and TX to pin 2 and 3
void setup()
{
myserial.begin(115200); //Initialize virtual serial port
Serial.begin(19200); //Initialize Arduino default serial port
delay(1000);
I have the same problem, I receive symbols with errors:
AT+IP⸮?
+IPR: a15200
OK
Any advice ?
Pablo
Pablo.LucchettiI was getting same ???? On using a blue Aduino board changed with a board from sparkfun a Red board didn't get?????? could it be something to do with ftdi communication
Stephen.RussellDoes the baud rate of the serial monitor correspond to the baud rate set in the code? Can the SIM7600 shield work with PC ManagerV1.8_160412 software?
You can use "AT+IPR?" to query the current hardware baud rate to make sure your baud rate is set correctly. After determining the baud rate, use the "AT+CGPS" command to turn on the GPS, and finally enter "AT+CGPSINFO" to get the GPS data. Finally, please connect the antenna to use GPS outdoors otherwise the positioning will be inaccurate.
Miya.zhang