ใบรายงานผลการปฏิบัติงาน 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); } } 2. ภาพจำลองการทำงานด้วยโปรแกรม Proteus 3. อธิบายการทำงานของโปรแกรม aduno จะคอยรับค่า ตามที่ กำหนดไว้และจะทำให้ led ติด
ความคิดเห็น
แสดงความคิดเห็น