說明
從傳入的 SMS 消息中檢索電話號碼並將其存儲在命名數組中。
用法
SMS.remoteNumber(number, size)
參數
- number: char 數組,一個命名數組,將保存發送者的號碼
- size:int,數組的大小
返回
- int
在異步模式下,remoteNumber() 如果最後一個命令仍在執行,則返回 0,如果成功則返回 1,如果有錯誤,則返回 >1。在同步模式下,如果執行成功則返回 1,否則返回 0。
示例
// include the NB library
#include <MKRNB.h>
#include "arduino_secrets.h"
// Please enter your sensitive data in the Secret tab or arduino_secrets.h
// PIN Number
const char PINNUMBER[] = SECRET_PINNUMBER;
// initialize the library instances
NB nbAccess;
NB_SMS sms;
// Array to hold the number an SMS is retrieved from
char senderNumber[20];
void setup() {
// initialize serial communications and wait for port to open:
Serial.begin(9600);
while (!Serial) {
; // wait for serial port to connect. Needed for native USB port only
}
Serial.println("SMS Messages Receiver");
// connection state
bool connected = false;
// Start GSM connection
while (!connected) {
if (nbAccess.begin(PINNUMBER) == NB_READY) {
connected = true;
} else {
Serial.println("Not connected");
delay(1000);
}
}
Serial.println("NB initialized");
Serial.println("Waiting for messages");
}
void loop() {
int c;
// If there are any SMSs available()
if (sms.available()) {
Serial.println("Message received from:");
// Get remote number
sms.remoteNumber(senderNumber, 20);
Serial.println(senderNumber);
// An example of message disposal
// Any messages starting with # should be discarded
if (sms.peek() == '#') {
Serial.println("Discarded SMS");
sms.flush();
}
// Read message bytes and print them
while ((c = sms.read()) != -1) {
Serial.print((char)c);
}
Serial.println("\nEND OF MESSAGE");
// Delete message from modem memory
sms.flush();
Serial.println("MESSAGE DELETED");
}
delay(1000);
}
相關用法
- Arduino MKRNB - getCurrentCarrier()用法及代碼示例
- Arduino MKRNB - getIMEI()用法及代碼示例
- Arduino MKRNB - endSMS()用法及代碼示例
- Arduino MKRNB - connected()用法及代碼示例
- Arduino MKRNB - shutdown()用法及代碼示例
- Arduino MKRNB - attachGPRS()用法及代碼示例
- Arduino MKRNB - getICCID()用法及代碼示例
- Arduino MKRNB - NB構造函數用法及代碼示例
- Arduino MKRNB - connect()用法及代碼示例
- Arduino MKRNB - beginSMS()用法及代碼示例
- Arduino MKRNB - print()用法及代碼示例
- Arduino MKRGSM - gprs.attachGPRS()用法及代碼示例
- Arduino MKRGSM - sms.read()用法及代碼示例
- Arduino MKRWAN - available()用法及代碼示例
- Arduino MKRWAN - version()用法及代碼示例
- Arduino MKRGSM - sms.print()用法及代碼示例
- Arduino MKRGSM - client.connected()用法及代碼示例
- Arduino MKRGSM - voice.answerCall()用法及代碼示例
- Arduino MKRGSM - voice.hangCall()用法及代碼示例
- Arduino MKRGSM - sms.write()用法及代碼示例
- Arduino MKRWAN - deviceEUI()用法及代碼示例
- Arduino MKRGSM - gsm.shutdown()用法及代碼示例
- Arduino MKRWAN - endPacket()用法及代碼示例
- Arduino MKRGSM - modem.getIMEI()用法及代碼示例
- Arduino MKRGSM - sms.available()用法及代碼示例
注:本文由純淨天空篩選整理自arduino.cc大神的英文原創作品 MKRNB - remoteNumber()。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。