CƠ BẢN 1: Xuất xung PWM duty cycle 50% ra loa Piezo.
---------Code Start-------------------------------------------------------------------
/* Arduino Code Xuất xung PWM duty cycle 50% ra loa Piezo.
by Thuthuatarduino.blogspot.com 07/08/2017.
*/
#define PIEZO 3 //Chân 3 PWM nối với Loa PIEZO.
int del = 500; // biết delay 0.5s.
void setup() {
pinMode(PIEZO, OUTPUT); // Chân 3 là chân OUTPUT.
}
void loop() {
analogWrite(PIEZO,128); // xuất xung PWM có duty 50%.
delay(del);
digitalWrite(PIEZO,LOW); // Tắt loa PIEZO.
delay(del);
}
---------Code End-------------------------------------------------------------------
Coding - Chân PWM phát âm thanh ra loa Piezo (Cơ bản 6)
Đào Xuân Thành
03:41:00
Đăng Ký Nhận Bài Mới Mỗi Ngày