Komut
begin()
Açıklama
Anakartın ağ adını, şifresini ve depolama ortamını belirterek WiFi101 OTA kütüphanesini başlatır
Sözdizimi
WiFiOTA .begin (ad, şifre, depolama);
Parametreler
name : ağ bağlantı noktaları listesinde görselleştirilecek kartın adı
password : uzaktan yükleme için eklenecek şifre
depolama : kullanılacak depolama ortamı. Aralarından biri olabilir:
- Dahili depolama
- SDStorage
Misal
#include <SPI.h>
#include <WiFi101.h>
#include <WiFi101OTA.h>
char ssid[] = "yourNetwork"; // your network SSID (name)
char pass[] = "secretPassword"; // your network password
int status = WL_IDLE_STATUS;
void setup() {
//Initialize serial:
Serial.begin(9600);
// check for the presence of the shield:
if (WiFi.status() == WL_NO_SHIELD) {
Serial.println("WiFi shield not present");
// don't continue:
while (true);
}
// attempt to connect to WiFi network:
while ( status != WL_CONNECTED) {
Serial.print("Attempting to connect to SSID: ");
Serial.println(ssid);
// Connect to WPA/WPA2 network. Change this line if using open or WEP network:
status = WiFi.begin(ssid, pass);
}
// start the WiFi OTA library with internal (flash) based storage
WiFiOTA.begin("Arduino", "password", InternalStorage);
}
void loop() {
// check for WiFi OTA updates
WiFiOTA.poll();
}
#include <WiFi101.h>
#include <WiFi101OTA.h>
char ssid[] = "yourNetwork"; // your network SSID (name)
char pass[] = "secretPassword"; // your network password
int status = WL_IDLE_STATUS;
void setup() {
//Initialize serial:
Serial.begin(9600);
// check for the presence of the shield:
if (WiFi.status() == WL_NO_SHIELD) {
Serial.println("WiFi shield not present");
// don't continue:
while (true);
}
// attempt to connect to WiFi network:
while ( status != WL_CONNECTED) {
Serial.print("Attempting to connect to SSID: ");
Serial.println(ssid);
// Connect to WPA/WPA2 network. Change this line if using open or WEP network:
status = WiFi.begin(ssid, pass);
}
// start the WiFi OTA library with internal (flash) based storage
WiFiOTA.begin("Arduino", "password", InternalStorage);
}
void loop() {
// check for WiFi OTA updates
WiFiOTA.poll();
}