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



6 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
  3. connection with arduino UNO????

    ReplyDelete
  4. it can be Serial connection with Arduino although soft serial also work here

    ReplyDelete