У нас вы можете посмотреть бесплатно Arduino Tutorial #20: How to use Microphone Sensor with Arduino, (16 of 37 Sensor Kit) или скачать в максимальном доступном качестве, видео которое было загружено на ютуб. Для загрузки выберите вариант из формы ниже:
Если кнопки скачивания не
загрузились
НАЖМИТЕ ЗДЕСЬ или обновите страницу
Если возникают проблемы со скачиванием видео, пожалуйста напишите в поддержку по адресу внизу
страницы.
Спасибо за использование сервиса ClipSaver.ru
Arduino Tutorial #20: How to use Microphone Sensor with Arduino UNO, (16 of 37 Arduino Sensor Kit). ----------- CODE ------------ /* This is 16 of 37 Sensors Tutorial code NOTE: Please replace $ sign with open and close Angle brackets in the code below, because YOUTUBE won't let me include angle brackets in video's Description. */ #include $LiquidCrystal_I2C.h$ //In this line Please replace $ sign with open and close Angle brackets //connections SDA--A4 and SCL--A5 //initialize the liquid crystal library //the first parameter is the I2C address LiquidCrystal_I2C lcd(0x27, 16, 2); int SensorPin = A0; int ledPin = LED_BUILTIN; int sensorValue = 0; void setup() { lcd.init(); //initialize lcd screen lcd.backlight(); // turn on the backlight pinMode(ledPin, OUTPUT); pinMode(SensorPin, INPUT); } void loop() { delay(300); sensorValue = analogRead(SensorPin); // Read sensor value lcd.clear(); lcd.setCursor(0, 0); //write on the top row lcd.print("Sensor Data: "); lcd.print(sensorValue); } Hope this tutorial was useful. Please hit LIKE for more Arduino tutorial and subscribe to stay tuned. #arduino #arduinouno #arduinoproject #diy #diyprojects #arduinotutorial #microphone #microphonesensor