티스토리 뷰

소리크기 계산 코드

http://blog.naver.com/roboholic84/220801048809


푸쉬버튼 피아노 코드/회로

https://www.kocoafab.cc/tutorial/view/92


프로세싱 소리출력 코드 minim library 이용

http://visualize.tistory.com/231


----------------------------------


아두이노-mspmax 연결 사용

https://www.youtube.com/watch?v=6bT3G4Mep7E


https://docs.cycling74.com/max5/tutorials/max-tut/communicationschapter02.html


----------------------------------

 

http://www.devicemart.co.kr/1279095?NaPm=ct%3Dj1exa7ju%7Cci%3Dcheckout%7Ctr%3Dco%7Ctrx%3D%7Chk%3Db7fddf9ece2a7c2c6414fc61165b6436b00f57c0


  • Analog Output:
    int sensorPin = A5; // select the input pin for the potentiometer
    int ledPin = 13; // select the pin for the LED
    int sensorValue = 0; // variable to store the value coming from the sensor

    void setup() {
    pinMode(ledPin, OUTPUT);
    Serial.begin(9600);
    }

    void loop() {

    sensorValue = analogRead(sensorPin);
    digitalWrite(ledPin, HIGH);
    delay(sensorValue);
    digitalWrite(ledPin, LOW);
    delay(sensorValue);
    Serial.println(sensorValue, DEC);
    }


'디벨로핑' 카테고리의 다른 글

병나발 MAX msp 코드  (0) 2017.04.13
병나발 아두이노 코드  (0) 2017.04.13
병나발 구현 note  (0) 2017.04.04
병나발 아이디어  (0) 2017.04.03
컵홀더 아이디어  (0) 2017.03.30
댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
Total
Today
Yesterday
링크
«   2025/06   »
1 2 3 4 5 6 7
8 9 10 11 12 13 14
15 16 17 18 19 20 21
22 23 24 25 26 27 28
29 30
글 보관함