说明
标识要向其发送 SMS 消息的电话号码。
用法
SMS.beginSMS(number)
参数
number:char数组,发送短信的电话号码
返回
int 在异步模式下,beginSMS() 如果最后一条命令仍在执行,则返回 0,如果成功则返回 1,如果有错误,则返回 >1。在同步模式下,如果执行成功则返回 1,否则返回 0。
示例
#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 instance
NB nbAccess;
NB_SMS sms;
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 Sender");
// connection state
bool connected = false;
// Start NB module
// If your SIM has PIN, pass it as a parameter of begin() in quotes
while (!connected) {
if (nbAccess.begin(PINNUMBER) == NB_READY) {
connected = true;
} else {
Serial.println("Not connected");
delay(1000);
}
}
Serial.println("NB initialized");
}
void loop() {
Serial.print("Enter a mobile number: ");
char remoteNum[20]; // telephone number to send SMS
readSerial(remoteNum);
Serial.println(remoteNum);
// SMS text
Serial.print("Now, enter SMS content: ");
char txtMsg[200];
readSerial(txtMsg);
Serial.println("SENDING");
Serial.println();
Serial.println("Message:");
Serial.println(txtMsg);
// send the message
sms.beginSMS(remoteNum);
sms.print(txtMsg);
sms.endSMS();
Serial.println("\nCOMPLETE!\n");
}
/*
Read input serial
*/
int readSerial(char result[]) {
int i = 0;
while (1) {
while (Serial.available() > 0) {
char inChar = Serial.read();
if (inChar == '\n') {
result[i] = '\0';
Serial.flush();
return 0;
}
if (inChar != '\r') {
result[i] = inChar;
i++;
}
}
}
}
相关用法
- Arduino MKRNB - getCurrentCarrier()用法及代码示例
- Arduino MKRNB - getIMEI()用法及代码示例
- Arduino MKRNB - endSMS()用法及代码示例
- Arduino MKRNB - connected()用法及代码示例
- Arduino MKRNB - shutdown()用法及代码示例
- Arduino MKRNB - attachGPRS()用法及代码示例
- Arduino MKRNB - remoteNumber()用法及代码示例
- Arduino MKRNB - getICCID()用法及代码示例
- Arduino MKRNB - NB构造函数用法及代码示例
- Arduino MKRNB - connect()用法及代码示例
- 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 - beginSMS()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。