Komut
shutdown
Açıklama
Modemi kapatarak SIM kartta tanımlanan GSM şebekesinden bağlantı kesilir.
Sözdizimi
gsm .shutdown ()
Parametreler
Yok
İadeler
boolean: yürütme sırasında 0, başarılı olduğunda 1
Misal
#include <GSM.h>
#define PINNUMBER ""
GSM gsm; // include a 'true' parameter for debug enabled
void setup()
{
// initialize serial communications
Serial.begin(9600);
// connection state
boolean notConnected = true;
// Start GSM shield
// If your SIM has PIN, pass it as a parameter of begin() in quotes
while(notConnected)
{
if(gsm.begin(PINNUMBER)==GSM_READY)
notConnected = false;
else
{
Serial.println("Not connected");
delay(1000);
}
}
Serial.println("GSM initialized");
gsm.shutdown();
Serial.println("GSM terminated");
}
void loop()
{
}
#define PINNUMBER ""
GSM gsm; // include a 'true' parameter for debug enabled
void setup()
{
// initialize serial communications
Serial.begin(9600);
// connection state
boolean notConnected = true;
// Start GSM shield
// If your SIM has PIN, pass it as a parameter of begin() in quotes
while(notConnected)
{
if(gsm.begin(PINNUMBER)==GSM_READY)
notConnected = false;
else
{
Serial.println("Not connected");
delay(1000);
}
}
Serial.println("GSM initialized");
gsm.shutdown();
Serial.println("GSM terminated");
}
void loop()
{
}