說明
GSM 是所有基於 GSM 的函數的基類。
用法
GSM GSMAccess
GSM GSMAccess(debug)
參數
debug:布爾(默認為 FALSE)標誌,用於開啟調試模式。這將從調製解調器打印出 AT 命令。
示例
// libraries
#include <MKRGSM.h>
// PIN Number
#define PINNUMBER ""
// initialize the library instance
GSM gsmAccess; // 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(gsmAccess.begin(PINNUMBER)==GSM_READY){
notConnected = false;
Serial.println("Connected to network");
}
else
{
Serial.println("Not connected");
delay(1000);
}
}
}
void loop()
{
// Nothing here
}
相關用法
- Arduino MKRGSM - gprs.attachGPRS()用法及代碼示例
- Arduino MKRGSM - sms.read()用法及代碼示例
- Arduino MKRGSM - sms.print()用法及代碼示例
- Arduino MKRGSM - client.connected()用法及代碼示例
- Arduino MKRGSM - voice.answerCall()用法及代碼示例
- Arduino MKRGSM - voice.hangCall()用法及代碼示例
- Arduino MKRGSM - sms.write()用法及代碼示例
- Arduino MKRGSM - gsm.shutdown()用法及代碼示例
- Arduino MKRGSM - modem.getIMEI()用法及代碼示例
- Arduino MKRGSM - sms.available()用法及代碼示例
- Arduino MKRGSM - client.available()用法及代碼示例
- Arduino MKRGSM - client.stop()用法及代碼示例
- Arduino MKRGSM - voice.voiceCall()用法及代碼示例
- Arduino MKRGSM - gsm.begin()用法及代碼示例
- Arduino MKRGSM - sms.endSMS()用法及代碼示例
- Arduino MKRGSM - grps.ping()用法及代碼示例
- Arduino MKRGSM - sms.peek()用法及代碼示例
- Arduino MKRGSM - sms.beginSMS()用法及代碼示例
- Arduino MKRGSM - voice.retrieveCallingNumber()用法及代碼示例
- Arduino MKRGSM - client.connect()用法及代碼示例
- Arduino MKRGSM - client.read()用法及代碼示例
- Arduino MKRGSM - sms.flush()用法及代碼示例
- Arduino MKRGSM - sms.remoteNumber()用法及代碼示例
- Arduino MKRGSM - voice.getVoiceCallStatus()用法及代碼示例
- Arduino MKRNB - getCurrentCarrier()用法及代碼示例
注:本文由純淨天空篩選整理自arduino.cc大神的英文原創作品 MKRGSM - GSM Constructor。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。