ใบงานที่ 7 arduino หาเอง

ใบรายงานผลการปฏิบัติงาน

1. Code Program ที่เขียนขึ้น ด้วยโปรแกรม Arduino  พร้อมอธิบายโปรแกรม
// select the input pin for the potentiometer

int sensorPin = A0;

// select the pin for the LED
int ledPin = 9;

// variable from the sensor
int sensorValue;
int ledValue;

void setup() {
// declare the ledPin as an OUTPUT:
pinMode(ledPin, OUTPUT);
Serial.begin(9600);
}

void loop() {
// read the value from the sensor:
sensorValue = analogRead(sensorPin);
ledValue = map( sensorValue, 0, 1023, 0, 255);
    Serial.println(ledValue);
    delay(100);
// fade LED
analogWrite (ledPin , ledValue);
}
}
  








      3. อธิบายการทำงานของโปรแกรม
  aduno จะคอยรับค่า ตามที่ กำหนดไว้และจะทำให้ led ติด

ความคิดเห็น

โพสต์ยอดนิยมจากบล็อกนี้

arduino กลับทางหมุนมอเตอร์

MIKRO C T6 ควบคุมการแสดงข้อความด้วย LCD