เปิดใช้ ArduinoOTA
เพิ่มการรองรับ OTA และอัปโหลดผ่าน WiFi
เปิดใช้ ArduinoOTA เป็นบทเรียน Arduino & IoT Academy ฟรีบน CoddyKit นี่คือบทเรียนที่ 2 จากทั้งหมด 4 บทเรียน คุณสามารถอ่านบทเรียนทั้งหมดด้านล่างฟรี — จากนั้นลองปฏิบัติด้วยตัวคุณเองในเบราว์เซอร์พร้อมตัวแก้ไขโค้ดในตัวและติวเตอร์ AI ตลอด 24/7 บทเรียนนี้เป็นส่วนหนึ่งของเส้นทางการเรียน Arduino & IoT Academy และความก้าวหน้าของคุณจะซิงค์ข้ามเว็บและแอป CoddyKit คอร์ส Arduino & IoT Academy มีบทเรียนทั้งหมด 4 บทเรียน
บางส่วนของบทเรียนนี้ยังไม่ได้รับการแปล และแสดงเป็นภาษาอังกฤษ
Meet ArduinoOTA
The simplest way to update over WiFi is the ArduinoOTA library. It makes your board appear as a network port inside the Arduino IDE.
Include the Library
OTA rides on WiFi, so you pull in both headers at the top of your sketch before anything else runs.
#include <WiFi.h>
#include <ArduinoOTA.h>Connect First
OTA can only work once you are online. In setup you join WiFi with your network name and password before starting OTA.
WiFi.begin("MyNetwork", "secret123");
while (WiFi.status() != WL_CONNECTED) { delay(500); }Start the Service
One call wakes the updater. ArduinoOTA.begin() registers your board on the network so the IDE can find it.
ArduinoOTA.begin();Give It a Name
Set a clear hostname so your device is easy to spot in the IDE's port list, especially when several boards share one network.
ArduinoOTA.setHostname("living-room-sensor");Protect It With a Password
Always set an OTA password so a stranger on your WiFi cannot push their own code to your hardware.
ArduinoOTA.setPassword("flashMe!");Handle OTA in the Loop
The updater is not automatic. You must call ArduinoOTA.handle() on every pass of loop so it can listen for an incoming upload.
void loop() {
ArduinoOTA.handle();
}Never Block the Loop
A long delay starves handle() and the upload fails. Keep loop quick so OTA always gets a chance to respond.
Watch the Progress
You can attach callbacks like onProgress to print how much of the new firmware has arrived during an upload.
ArduinoOTA.onProgress([](unsigned int p, unsigned int t) {
Serial.printf("%u%%\n", (p * 100) / t);
});Find the Network Port
After uploading once by USB, open the IDE's port menu. Your named board appears under network ports, ready for wireless flashing. 📶
Upload Wirelessly
Pick the network port, hit upload, and enter your password. From now on, new code flows entirely over the air.
Quick Check
One method must run constantly for OTA to work.
Recap
Include ArduinoOTA, connect to WiFi, call begin() with a hostname and password, then run handle() every loop to flash your board wirelessly. ✅
คำถามที่พบบ่อย
บทเรียน “เปิดใช้ ArduinoOTA” ฟรีหรือไม่
ใช่ — ข้อความเต็มของ “เปิดใช้ ArduinoOTA” ฟรีให้อ่านที่นี่บนเว็บ เพื่อปฏิบัติแบบโต้ตอบ (ตัวแก้ไขโค้ดในตัวและติวเตอร์ AI ตลอด 24/7) และปลดล็อคส่วนที่เหลือของคอร์ส Arduino & IoT Academy ให้อัปเกรดเป็น CoddyKit PRO คอร์ส Arduino & IoT Academy มีบทเรียนทั้งหมด 4 บทเรียน
คุณจะเรียนรู้อะไรในบทเรียน “เปิดใช้ ArduinoOTA”
เพิ่มการรองรับ OTA และอัปโหลดผ่าน WiFi คุณปฏิบัติ Arduino & IoT Academy ด้วยโค้ดที่ใช้งานได้จริงที่คุณเรียกใช้โดยตรงในเบราว์เซอร์ และติวเตอร์ AI ตลอด 24/7 ตอบคำถามของคุณขณะที่คุณไปผ่านบทเรียน
คุณต้องมีประสบการณ์ก่อนที่จะเริ่มเรียน Arduino & IoT Academy หรือไม่
ไม่จำเป็นต้องมีประสบการณ์มาก่อน Arduino & IoT Academy บน CoddyKit ออกแบบมาสำหรับผู้เริ่มต้นไปจนถึงผู้เรียนขั้นสูง คุณสามารถเริ่มต้นที่นี่หรือเริ่มจากตัวแรกและเรียนด้วยความเร็วของคุณเอง นี่คือบทเรียนที่ 2 จากทั้งหมด 4 บทเรียน
บทเรียน “เปิดใช้ ArduinoOTA” ใช้เวลานานแค่ไหน
บทเรียน CoddyKit ส่วนใหญ่ใช้เวลาประมาณ 5–10 นาที แต่ละบทเรียนจึงสั้นและเป็นแบบโต้ตอบ คุณสามารถก้าวหน้าอย่างต่อเนื่องและกลับมาเรียนต่อจากตรงที่เพิ่งหยุดบนเว็บและแอปได้เลย
ฉันเขียนและรันโค้ดในบทเรียน Arduino & IoT Academy นี้ได้ไหม
ได้ บทเรียน Arduino & IoT Academy ทุกบทมีตัวแก้ไขโค้ดในตัว คุณจึงเขียนและรันโค้ดจริงได้เลยในเบราว์เซอร์ และได้รับข้อเสนอแนะจาก AI ในทันที — ไม่ต้องติดตั้งในเครื่องของคุณ