Home
About
Contact
Arduino KIT Use
Header Ads Widget
Responsive Advertisement
Home-text
Home
Music Sound Sensor Control with Arduino
Music Sound Sensor Control with Arduino
AdeebTechnologyLab
November 18, 2019
Circuit Diagram:
Music Sound Sensor Control with Arduino
project details
project details......
Code:
int soundSensor = 2; int LED = 3; void setup() { pinMode (soundSensor, INPUT); pinMode (LED, OUTPUT); } void loop() { int statusSensor = digitalRead (soundSensor); if (statusSensor == 1) { digitalWrite(LED, HIGH); } else { digitalWrite(LED, LOW); } }
Project Testing Video:
Post a Comment
0 Comments
Social Plugin
Contact form
0 Comments