บอกวิธีการต่อหน่อยคับ พร้อมกับ โค้ดโปรแกรมหน่อยคับ ขอบคุณมากคับ
ตัวอย่างโคด
void setup() {
pinMode(9, OUTPUT);
}
void loop() {
digitalWrite(9, HIGH); // turn the LED on (HIGH is the voltage level)
delay(1000); // wait for a second
digitalWrite(9, LOW); // turn the LED off by making the voltage LOW
delay(10000); // wait for a second
}
ต่อตามรูปนี้ครับ