说明
返回客户端是否已连接。如果连接已关闭但仍有未读数据,则认为客户端已连接。
用法
client.connected()
参数
空
返回
boolean - 如果客户端已连接,则返回 true,否则返回 false。
示例
/*
Web client
This sketch connects to a website through a MKR NB 1500. Specifically,
this example downloads the URL "http://arduino.cc/" and prints it
to the Serial monitor.
Circuit:
* MKR NB 1500
* SIM card with a data plan
created 8 Mar 2012
by Tom Igoe
http://arduino.cc/en/Tutorial/NBExamplesWebClient
*/
// libraries
#include <MKRNB.h>
// PIN Number
#define PINNUMBER ""
// initialize the library instance
NBClient client;
GPRS gprs;
NB nbAccess;
// URL, path & port (for example: arduino.cc)
char server[] = "arduino.cc";
char path[] = "/";
int port = 80; // port 80 is the default for HTTP
void setup()
{
// initialize serial communications
Serial.begin(9600);
Serial.println("Starting Arduino web client.");
// connection state
boolean notConnected = true;
// After starting the modem with NB.begin()
// attach the shield to the GPRS network with the APN, login and password
while(notConnected)
{
if((nbAccess.begin(PINNUMBER)==NB_READY) &&
(gprs.attachGPRS()==GPRS_READY))
notConnected = false;
else
{
Serial.println("Not connected");
delay(1000);
}
}
Serial.println("connecting...");
// if you get a connection, report back via serial:
if (client.connect(server, port))
{
Serial.println("connected");
// Make a HTTP request:
client.print("GET ");
client.print(path);
client.println(" HTTP/1.0");
client.println();
}
else
{
// if you didn't get a connection to the server:
Serial.println("connection failed");
}
}
void loop()
{
// if there are incoming bytes available
// from the server, read them and print them:
if (client.available())
{
char c = client.read();
Serial.print(c);
}
// if the server's disconnected, stop the client:
if (!client.available() && !client.connected())
{
Serial.println();
Serial.println("disconnecting.");
client.stop();
// do nothing forevermore:
for(;;)
;
}
}
相关用法
- Arduino MKRNB - connect()用法及代码示例
- Arduino MKRNB - getCurrentCarrier()用法及代码示例
- Arduino MKRNB - getIMEI()用法及代码示例
- Arduino MKRNB - endSMS()用法及代码示例
- Arduino MKRNB - shutdown()用法及代码示例
- Arduino MKRNB - attachGPRS()用法及代码示例
- Arduino MKRNB - remoteNumber()用法及代码示例
- Arduino MKRNB - getICCID()用法及代码示例
- Arduino MKRNB - NB构造函数用法及代码示例
- 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 - connected()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。