1

My JAVA program can find a modem connected with serial port. Like:

COM1: Serial
COM3: Serial  // This is my modem
LPT1: Parallel
LPT2: Parallel

Is there any AT Command or other process which can help me to find out the operators identity (name), who's SIM is being used in the modem?

parsley72
  • 8,449
  • 8
  • 65
  • 98
A. K. M. Tariqul Islam
  • 2,824
  • 6
  • 31
  • 48

1 Answers1

1

The command for finding out which network you are registered on is

AT+COPS?

On mine, that outputs

+COPS: 0,0,"giffgaff",2

Where the string in the quotes is the operator's name.

Terence Eden
  • 14,034
  • 3
  • 48
  • 89