當前位置: 首頁>>編程示例 >>用法及示例精選 >>正文


Arduino WiFi101OTA - WiFiOTA.begin()用法及代碼示例

說明

初始化 WiFi101 OTA 庫,指定板的網絡名稱、密碼和存儲介質

用法

WiFiOTA.begin(name, password, storage);

參數

名稱:要在網絡端口列表中顯示的板的名稱

密碼:為遠程上傳插入的密碼

storage:要使用的存儲介質。可以是以下之一:

  • InternalStorage
  • SDStorage

示例

#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();
}

相關用法


注:本文由純淨天空篩選整理自arduino.cc大神的英文原創作品 WiFi101OTA - WiFiOTA.begin()。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。