วันอาทิตย์ที่ 25 พฤศจิกายน พ.ศ. 2561

งานที่ 6 ตัวอย่างงานที่ใช้โปรแกรม Arduino สปที่ 6

ตัวอย่างงานที่ใช้โปรแกรม Arduino

การเขียนโปรแกรมเบื้องต้นกับ Arduino C++ (การส่งค่าสัญญาณ PWM)



ตัวอย่าง Code
// 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);
}
 อ้างอิง : http://www.myarduino.net/article/25/%E0%B8%81%E0%B8%B2%E0%B8%A3%E0%B9%80%E0%B8%82%E0%B8%B5%E0%B8%A2%E0%B8%99%E0%B9%82%E0%B8%9B%E0%B8%A3%E0%B9%81%E0%B8%81%E0%B8%A3%E0%B8%A1%E0%B9%80%E0%B8%9A%E0%B8%B7%E0%B9%89%E0%B8%AD%E0%B8%87%E0%B8%95%E0%B9%89%E0%B8%99%E0%B8%81%E0%B8%B1%E0%B8%9A-arduino-c-%E0%B8%81%E0%B8%B2%E0%B8%A3%E0%B8%AA%E0%B9%88%E0%B8%87%E0%B8%84%E0%B9%88%E0%B8%B2%E0%B8%AA%E0%B8%B1%E0%B8%8D%E0%B8%8D%E0%B8%B2%E0%B8%93-pwm

ไม่มีความคิดเห็น:

แสดงความคิดเห็น