Kayıtlar

Şubat, 2010 tarihine ait yayınlar gösteriliyor

Playing buzzers

Resim
A musical instrument is a device created or adapted for the purpose of making musical sounds. Arduino Code void setup() { // set a pins for buzzers output pinMode(13, OUTPUT); pinMode(12, OUTPUT); pinMode(11, OUTPUT); } void loop() { buzz(13, 440, 20); // buzzer pin, freq, milliseconds delay(100); buzz(11, 500, 10); // buzzer pin, freq, milliseconds delay(100); buzz(12, 660, 10); // buzzer pin, freq, milliseconds delay(100); } void buzz(int targetPin, long frequency, long length) { long delayValue = 1000000/frequency/2; long numCycles = frequency * length/ 1000; for (long i=0; i buzzer arduino breadboard jumperkit (cables) to connect buzzers

Controlling Ableton with JoyPad (PureData)

A musical instrument is a device created or adapted for the purpose of making musical sounds. Here is the example of controlling ableton with joypad. PureData send midi message to ableton. This patch send basic midi message with joypad, you can use others software protools, cubase, sonar etc. Im using ableton because assign midi message and playing loopie very enjoying and simple and of course easy to change midi message and rhythmic pattern. here is the puredata joypad patch How can I prepare musical idea with ableton; before to connect joypad I prepared four chords, Chords names are Cmaj7, D7, G7 , A7 I can manage realtime these chords with 1-2-3-4 buttons on joypad. after the chords, I made two rhythmic loop, bass sound and fx loop, I can change bass loop tone (transpose) with arrow button left and right, rhythmic loops connect two fx sections. (autofilter and phasor) autofilter can controled with joypad axix. on joypad open/close (button 9) autofilter active to ...