GMU:Max and I, Max and Me/Anna Lena Ruth Wissmueller: Difference between revisions

From Medien Wiki
No edit summary
 
(71 intermediate revisions by 2 users not shown)
Line 1: Line 1:
'''22.4.2021''':  
==Digital wind chime==
 
An analog wind chime consists of small pipes (for example made out of wood or metal) that are moved by the wind. When they collide sounds are produced.
I created a digital wind chime with the program Max MSP and an Arduino. The arduino is equipped with a light sensor and is connected to the computer that runs max msp. The arduino does not sense wind, but light. Therefore, the wind has to be translated into light. That happens for example when the sun is shining and light falls through the leaves of a bush or tree. The digital wind chime has to be placed under said tree/bush. It can be started with a button in the max msp program.
 
The digital wind chime consists of two parts: one fundamental tone that is played by the drunk object of max msp and is running all the time. The second part is depending on the data, that the arduino gathers through the light sensor. Different shades create different tones in max msp.
 
 
The arduino can be put into a box, so the wind chime resembles a music box rather than an electric setup.
<gallery>
File:20210616_152333.jpg
File:20210616_152338.jpg
File:20210616_152401.jpg
</gallery>
 
===Codes===
'''LATEST UPDATE: 15.7.2021'''
 
[[Max Patch]]
 
[[Arduino Code]]
 
Arudino setup:
<gallery>
File:120210505_105113.jpg
File:120210505_105123.jpg
File:120210505_131826.jpg
</gallery>
 
===Videos===


getting to know max msp
Inside:


[[:File:Max MSP.mp4]]
[[File:15.7.mp4]]
     


i tried to run two counters at the same time to create two different melodies playing simultaneously but it didn't work
Outside:


[[File:47.15.mp4]]


'''29.4.2021''': sound and video analysis
===Wind chime in use===


*[[:File:sound to numbers.mp4]]
<gallery>
File:20210715_145309.jpg
File:20210715_145319.jpg
File:20210715_145533.jpg
</gallery>


===Progress===
04.07.2021


*[[:File:video analysis.mp4]]
[[Video]]


[[max patch]]


i followed the tutorials and added the object "print" to both patches
[[inside test run]]




'''interesting project:'''
Patches that did not work out: [[speculative work]]
https://www.youtube.com/watch?v=6GIP5VDdQ18


(light sensor of an arduino connected to max msp)
===Archive===


'''22.4.2021''':


getting to know max msp


'''6.5.2021'''
[[:File:Max MSP.mp4]]


i tried to run two counters at the same time to create two different melodies playing simultaneously but it didn't work


Arduino light sensor


[[File:20210505_105113.jpg|400px]]
'''29.4.2021''': sound and video analysis
[[File:20210505_105123.jpg|400px]]


the code i used:  
*[[:File:sound to numbers.mp4]]


// global variables


int sensor = A1;
*[[:File:video analysis.mp4]]




void setup() {
i followed the tutorials and added the object "print" to both patches


// put your setup code here, to run once:
Serial.begin (9600); // start serial
}


void loop() {
'''interesting project:'''
https://www.youtube.com/watch?v=6GIP5VDdQ18


// put your main code here, to run repeatedly:
(light sensor of an arduino connected to max msp)




int sensorValue = analogRead (sensor);


'''6.5.2021'''


Serial.println (sensorValue);
}


Arduino light sensor + LED pin


Problems i encountered while trying to connect max msp and the arduino:


- when i try to run the patch from the first tutorial the numbers don't show on the console  / print isnt working
<gallery>
- led does not light up while running the code
File:20210505_131826.jpg
File:lightsensor.jpg
</gallery>

Latest revision as of 17:04, 18 April 2022

Digital wind chime

An analog wind chime consists of small pipes (for example made out of wood or metal) that are moved by the wind. When they collide sounds are produced. I created a digital wind chime with the program Max MSP and an Arduino. The arduino is equipped with a light sensor and is connected to the computer that runs max msp. The arduino does not sense wind, but light. Therefore, the wind has to be translated into light. That happens for example when the sun is shining and light falls through the leaves of a bush or tree. The digital wind chime has to be placed under said tree/bush. It can be started with a button in the max msp program.

The digital wind chime consists of two parts: one fundamental tone that is played by the drunk object of max msp and is running all the time. The second part is depending on the data, that the arduino gathers through the light sensor. Different shades create different tones in max msp.


The arduino can be put into a box, so the wind chime resembles a music box rather than an electric setup.

Codes

LATEST UPDATE: 15.7.2021

Max Patch

Arduino Code

Arudino setup:

Videos

Inside:


Outside:

File:47.15.mp4

Wind chime in use

Progress

04.07.2021

Video

max patch

inside test run


Patches that did not work out: speculative work

Archive

22.4.2021:

getting to know max msp

File:Max MSP.mp4

i tried to run two counters at the same time to create two different melodies playing simultaneously but it didn't work


29.4.2021: sound and video analysis



i followed the tutorials and added the object "print" to both patches


interesting project: https://www.youtube.com/watch?v=6GIP5VDdQ18

(light sensor of an arduino connected to max msp)


6.5.2021


Arduino light sensor + LED pin