ตัวอย่างงานที่ใช้โปรแกรม Arduino
สอนใช้งาน Arduino Wi-Fi Module ESP8266 แบบ TCP Client
void setup() {
// initialize digital pin 13 as an output.
pinMode(13, OUTPUT);
}
// the loop function runs over and over again forever
void loop() {
digitalWrite(13, HIGH); // turn the LED on (HIGH is the voltage level)
delay(1000); // wait for a second
digitalWrite(13, LOW); // turn the LED off by making the voltage LOW
delay(1000); // wait for a second
}
อ้างอิง : http://www.myarduino.net/article/49/%E0%B8%AA%E0%B8%AD%E0%B8%99%E0%B9%83%E0%B8%8A%E0%B9%89%E0%B8%87%E0%B8%B2%E0%B8%99-arduino-wi-fi-module-esp8266-%E0%B9%81%E0%B8%9A%E0%B8%9A-tcp-client
ไม่มีความคิดเห็น:
แสดงความคิดเห็น