드디어 아두이노 yun + Grove 셋트를 구매 !
이제부터 하나씩 응용해 보면서 개발 해봐야지 하는 마음으로 오늘부터 하나씩 기록 해 보도록 할 예정임
아... 선 정리에 불편함이 완전 줄어 들어서 넘 좋은거 같음. 브레드 보드여 안녕 ~ 난 단위 모듈만 끼워 넣겠다 ㅋㅋㅋㅋㅋ
사운드 센서 + LED
=> 목표 : 소리가 일정 크기 이상이 되면 불이 들어오도록 함.
=> 응용 : 도서관에서 소리가 큰 사람의 자리는 불이 들어오록 함 -_-;;;
출처 : http://www.seeedstudio.com/wiki/Grove_-_Sound_Sensor
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | int LED = 13; int SOUND_SENSOR = A0; void setup() { // put your setup code here, to run once: Serial.begin(9600); pinMode(SOUND_SENSOR, INPUT); pinMode(LED, OUTPUT); } void loop() { int sensorValue = analogRead(SOUND_SENSOR);//use A0 to read the electrical signal Serial.print("sensorValue : "); Serial.println(sensorValue); if( sensorValue > 650 ){ digitalWrite(LED, HIGH); delay(200); } digitalWrite(LED, LOW); } |
'etc > old' 카테고리의 다른 글
angular-js form post 처리 (spring-modelAttribute 처리) (0) | 2015.07.08 |
---|---|
자바 웹 프로젝트를 하면서 격는 한글 처리 문제점... (0) | 2015.07.01 |
highlight 강조 표현 처리 (0) | 2015.06.18 |
matches 사용방법 (0) | 2015.06.18 |
cordova - platform support (0) | 2015.06.05 |