Unterstützung eines Projekts/Supporting a project

(note from JML : English version is below, so not moving this to the Deutsch category)


Hallo liebes Arduino-Forum,

ich habe ein Projekt mit einem Arduino Uno R3, bei dem über ein SIM900 GSM-Modul SMS versendet werden (zur Registrierung von Nutzern).

Nun hat mir mein Mobilfunkanbieter eine neue SIM-Karte geschickt. Diese funktioniert leider nicht mehr mit dem SIM900 Modul, vermutlich weil die Karte bzw. der Tarif nur noch 4G/5G unterstützt.

Daher möchte ich das Projekt auf ein neues LTE-fähiges Modul (z. B. SIM7600) umrüsten.

Da ich selbst in diesem Bereich nicht sehr tief drin bin, wollte ich fragen, ob es hier im Forum jemanden gibt, der mich dabei unterstützen könnte. (Anbei ein paar Bilder)

Meine Idee wäre:

  • Ich sende den Arduino inkl. aktuellem Code zu (+ notwendige Bauteile)
  • Ein passendes LTE-Modul wird eingebaut (z. B. SIM7600 oder ähnlich)
  • Der Code wird entsprechend angepasst, sodass das System wieder SMS versenden kann.

Natürlich gegen Bezahlung.

Falls Interesse besteht, würde ich mich über eine private Nachricht freuen. Dann könnten wir telefonieren, den Aufwand und Preis besprechen und klären, welche Bauteile ich noch besorgen muss.

Vielen Dank!

Viele Grüße


Hello dear Arduino forum,

I have a project with an Arduino Uno R3 that sends SMS messages via a SIM900 GSM module (for user registration).

My mobile provider has now sent me a new SIM card. Unfortunately, this no longer works with the SIM900 module, presumably because the card or the plan only supports 4G/5G.

Therefore, I would like to upgrade the project to a new LTE-capable module (e.g., SIM7600).

Since I'm not very experienced in this area myself, I wanted to ask if there's anyone in the forum who could help me with this. (I've attached some pictures.)

My idea is:

  • I send the Arduino, including the current code, along with the necessary components.

  • A suitable LTE module is installed (e.g., SIM7600 or similar).

  • The code is then modified accordingly so that the system can send SMS messages again.

Of course, I'll pay for this service.

Since I'm not very experienced in this area myself, I wanted to ask if there's anyone in the forum who could help me with this. If you're interested, I'd be happy to receive a private message. Then we could talk on the phone, discuss the scope of work and price, and clarify which components I still need to source.

Thank you!

Best regards


it's more likely because the region where you have no longer support GSM.


if your code today works with AT commands, it might be quite straightforward to port to a SIM7600 module, possibly no modification at all in that part.

i got both simcards and the Output looks Like:

with Old Simcard:

updateSerial result: +CFUN: 1 +CPIN: READY AT+CSQ +CSQ: 0,0 OK

with new Simcard:

+CPIN: NOT INSERTED +CFUN: 1 AT OK ---------------------- updateSerial result: AT+CSQ +CSQ: 0,0 OK ---------------------- updateSerial result: AT+CCID ERROR ---------------------- updateSerial result: AT+CREG? +CREG: 0,0 OK ---------------------- updateSerial result: AT+CMGF=1 OK ---------------------- updateSerial result: AT+CNMI=1,2,0,0,0 ERROR ---------------------- sending auth token... Send Ping

and i dont know how to straightforward it..

May I assume this is using the new SIM card on the old SIM900?

AT+CPIN? returns NOT INSERTED when the modem does not detect a SIM card in the slot.

This indicates that the module does not see the new SIM at the hardware level which is not surprising if the SIM card does not support the legacy GSM signaling for detection and registration.

So you are right thinking you'll need a new module like the SIM7600.