Code
int led = 10;
void setup() {
pinMode (led,OUTPUT);
}
void loop() {
int x,y;
x = analogRead(A0);
y = map (x,0,1023,0,255);
analogWrite(led,y);
delay(1000);
}
คำอธิบาย
เมื่อปรับเปลี่ยนRแบบปรับค่าได้ledจะกระพิบช้าหรือเร็วตามค่าRที่เราปรับ
ไม่มีความคิดเห็น:
แสดงความคิดเห็น