Hi to all!
I am quite new to the arduino world and recently I have tried to setup a new device (SIM5320E) bought on ebay (this)
On the auction description there are no instructions on how to setup the device but, following the examples of many people on the web (e.g. link youtube) I have managed to light on the power LEDs and to esablish the wiring connections...
The code that I have uploaded to my UNO in order to comunicate with the board is:
#include <SoftwareSerial.h>
// software serial #1: RX = digital pin 10, TX = digital pin 11
SoftwareSerial portOne(10, 11);
void setup() {
Serial.begin(4800);
while (!Serial) {
; // wait for serial port to connect. Needed for native USB port only
}
Serial.println("Goodnight moon!");
portOne.begin(4800);
}
void loop() {
if (portOne.available()){
Serial.write(portOne.read());
Serial.println("hello?");
}
if (Serial.available()){
portOne.write(Serial.read());
Serial.println("oh hello?");
}
}
I think it is very simple and I have maintained like that in order to minimize the source of errors...
Nevertheless nothing seems to work, not Opening the serial monitor, nor launching any AT command.
I have also tried the FONA test script but again it seems that the RX and TX are not connected to the uno.
I have tried to swap pins, to move to other numbers etc... noting happened.
Tried also all the other baudrates and what I was able to achieve were only a bunch of ??????? on the screen...
Does anyone have any suggestion?
thank you very much!
Ps. Attached one screenshot and a wiring photo

