Hi. I am trying to connect a GBoard SIM900 SIMCom board to Thinger. For this I am using the ArduinoTinyGsm sketch with the following configuration:
// Select your modem:
//#define TINY_GSM_MODEM_SIM800
#define TINY_GSM_MODEM_SIM900
...
// Emulate Serial1 on pins 10/11 if HW is not present (use interrupt pin in RX for better performance)
#ifndef HAVE_HWSERIAL1
#include "SoftwareSerial.h"
SoftwareSerial Serial1(2, 3); // RX, TX
...
,but this is what I get from the serial monitor:
[NETWORK] Starting connection…
[NETWORK] Network Status: 4
[NETWORK] Restarting Modem…
[NETWORK] Waiting for Network…
[NETWORK] Cannot connect network!
[NETWORK] Cannot connect!
[NETWORK] Starting connection…
[NETWORK] Network Status: 4
[NETWORK] Restarting Modem…
[NETWORK] Waiting for Network…
[NETWORK] Cannot connect network!
[NETWORK] Cannot connect!
I have tested changing Rx and Tx by 10.11 respectively but it also does not find the network.
Also checked the sufficient balance of the card.
Attached image of the board and its pin configuration (RX, TX):
Thanks in advance.