Tuesday 10 May 2022

Arduino SIM800L IMEI CHANGER

Below mentioned code can change any GSM module IMEI 

Many of faulty registered IMEI can be re-use in this Case,

AT+SIMEI command will be used in this case

https://youtu.be/hOJCJVk-5JE

Another video for updating Nokia IMEI on sim800

https://youtu.be/In8d8y4rQqM


IMEI finding
delay(4000);
     SIM800L.println("AT+GSN");
      delay(1000);

----------------------------------------------------------------

#include <SoftwareSerial.h>


void setup() {


  Serial.begin(9600);


  delay(100);


  Serial.println ("AT+SIMEI=863789000008218"); } // Enter desire IMEI #

void loop() {}


Best Power supply for Sim800L module

Title of the document



4 comments:

  1. can we change the product identifier via At commands?

    ReplyDelete
  2. is this command really working? It cant be found anywhere else

    ReplyDelete