fbpx
Quick shop
Loading
Type at least 1 character to search
Back to top

Steamkits.eu

/ Tips & Tricks / Tips and Tricks first steps for Dj Mixers

Tips and Tricks first steps for Dj Mixers

Unleash Your Inner Music Wizard with a DIY DJ Jay-D Mixer

Are you ready to take your passion for music to the next level? With a DIY DJ Jay-D mixer, you can embark on an exciting journey towards becoming a DJ superstar. Even though it may be mini in size, this little powerhouse performs like a pro, giving you the tools you need to create incredible beats and mixes.

Immerse yourself in the world of voice recognition technology and unlock the effortless ways to utilize your voice for seamless interaction with everyday technology. Discover a fun, interactive, and hands-on approach to master the art of voice-controlled technology in your daily life.

Designed with the aspiring DJ in mind, this mini mixer offers almost all the basic functions of a professional-grade mixer. It’s a compact yet powerful device that will elevate your music production skills. Let’s dive into some of its impressive features.

Firstly, you’ll enjoy the convenience of two simultaneous playback slots. This means you can seamlessly mix tracks and create smooth transitions, just like the pros. With the ability to queue your song list, you’ll always be ready to drop the next hit and keep the crowd grooving all night long.

But that’s not all! This CircuitMess Jay-D DIY DJ mixer also boasts built-in speakers, various equalizers, and sound effects. You’ll have complete control over the audio output, allowing you to fine-tune your sound to perfection. Whether you’re pumping up the bass or adding some reverb, the possibilities are endless. Get ready to crank up the volume and make your music truly shine.

What about audio connectivity? Fear not, as the Jay-D mixer has got you covered. It features an aux output port, enabling you to connect your headphones or external speakers using a standard 3.5mm audio jack. Immerse yourself in the music, and let your creativity flow.

And here’s a bonus feature that adds a touch of flair: the super cool LED lights. These dazzling lights bring a clubbing effect right to your fingertips. As you work your magic on the mixer, the mesmerizing bling-bling effect will enhance the overall experience and set the perfect atmosphere for your performances.

So, whether you’re just starting your DJing journey or looking to upgrade your current setup, this CircuitMess Jay-D DIY DJ mixer is the ultimate companion. With its impressive functionality, sleek design, and captivating LED lights, you’ll have the power to captivate audiences and create music that moves hearts.

It’s time to unleash your inner music wizard. Grab your DIY DJ mixer and let the beats flow. Get ready to make your mark on the music scene and embark on a thrilling adventure as a DJ superstar. The stage is yours.

jayd small package

This time, we’re going to create a DJ interface where you can remix one song, add different effects and intensities.
Also, we’ll explore options for printing letters on display. This function will enable us to see the names of the available sound effects on the LCD display.
Let’s start with creating a new Jay-D block project.

jay d-1

Now let’s create three variables that we’ll use. Name the variables effect, intensity, and volume.

jay d- 2
jay d-3

Repeat this step three times, so you have the following variables available:

jay d -4

Drag and drop the “set” block under Arduino run first and choose the “effect” in the drop-down menu:

jay d -5

In the “Math” section, choose the “123” block and insert it into the previous block. Put the 0 value instead of 123.

jay d- 6
jay d- 7

Now drag and drop two more “set” blocks from the “Variable” section.
Open the drop-down menus and choose intensity in one block and volume in the other block.
Intensity and volume will be controlled by the slider potentiometers. So, go to the “Input” section and find the block that says “potentiometer middle current value”.

jay d -8

Put this block into the variable block for intensity and volume. Set the intensity potentiometer to be the left one and the volume potentiometer to be the right one.

jay d - 9

Let’s open a file on the memory card. This is a song that you’re going to remix.
Go to the “DJ” section and find a block “open file pre-recorded”. This block will give you an option to choose from songs that were pre-recorded on the memory card..”
If you’d like to use a song that you added yourself, choose a block that says “open file (name of the song)”.
You can put this block after the variable blocks that we added earlier.

jay d- 10

Open a drop-down menu in this block and choose any song you’d like to remix.

jay d - 11

After you have chosen a song you want to remix, let’s create a function that will set the effects for remixing.
Go to the “Functions” section and create a new function.

jay d - 12

Let’s call it “setEffect”:

jay d - 13

The function will appear in the sketch, but don’t forget to put the “call effect” in the first block after the “open file” block.

jay d- 14

We’ll now use a logical function for setting the effect. There will be 5 options, so bear with us.
Go to the “Logic” section and choose a second block with the if and else option.

jay d - 15

Drop it into the “setEffect” block.

jay d - 16

We’ll now insert a new logic block instead of the “true” option. So, go to the “Logic” section and drag and drop the following block:

jay d - 17

This is a comparison function, so we’ll need to use the “effect” variable instead of numbers. Each effect will have its number, so we will assign those numbers by using this function.
Go to the “Variables” section and put the “effect” variable in the first window in the comparison.

jay d - 18

Make sure to keep the equal sign and type in the 0 in the other window of the comparison.

jay d -19

We just set the comparison for the effect to be equal to zero. If that is the case, we need to select an action that will take place.
Go to the “DJ” section and find a block that says “set effect slot 0 to effect low pass”.

jay d - 20

Drag and drop this one here:
Make sure to choose 0 in the first drop-down menu and effect none in the other drop-down menu.

jay d -21

Setting the none effect option is done. Let’s repeat this a couple of more times, but adding different effects this time.
Every time you want to expand the logical block and add another effect, click on the small plus sign at the bottom of the block:

jay d - 22

We repeated the previous step four more times for four new effects:
1 – low pass
2 – high pass
3 – reverb
4 – bit crusher
Close this block by clicking on the small minus sign next to “else”.

jay d - 23

Lastly, we’ll add the block that will connect the effect with the intensity we used as a variable previously.

Go to the “DJ” section and find the last block that says “set effect slot 0 intensity to 100”.

jay d- 24

Put this block here:

jay d- 25

Instead of “100”, we’ll use the intensity variable. So, go to the “Variables” section and drag and drop the intensity variable in the last block.

If the number pops up outside the block when you drop the intensity variable, just drag it on the side where the sections are to delete it from the sketch.

jay d - 27
jay d -26

The function “setEffect” is done!

Let’s return to the Arduino run first block and add the volume block.

Open the “DJ” section and find the “set volume to” block.

jay d - 28

Drop it here:

jay d - 29

Like with the intensity variable, let’s replace the number with the volume variable here as well:

jay d - 30

Open the “DJ” section again and find a block that says “start playing”.
Put it here:

jay d - 31

We need to create one more function.

Let’s call it “draw” since this function will print the effect names and intensity on the display.

After you create the function, it will appear in the sketch.

jay d - 32

Don’t forget to drop the “call draw” block here:

jay d - 33

Let’s edit the “draw” function now.

We’ll use the blocks in the “Display” section to set the font size, type, and color.

jay d - 34

Set the following options for the text on the screen:

jay d - 35

Since we chose the white font color, let’s set the background to black.

Go to the “Display” section and find the block that says “clear the display with screen color Black”.

Put the block here:

jay d - 36

Go to the “Display” section and find the print block:

jay d - 37

We’re going to edit this so that it prints the word Volume and the volume value as well.

In the “Text” section, find the block that says “create text with”.

jay d - 38

Put this block here:

jay d - 39

Open the “Text” section again and drag and drop the blank text block in the first window of the previous text block that’s in the sketch.

Write “Volume:” in the text box like this:

jay d - 40

Put the volume variable in the next window in the text box. This will print the actual volume value.

x and y are the coordinates of the text “Volume:”. Set the x to 10 and y to 20.

yay d - 41

To print the effect names, we’ll have to use the logic function. This step is similar to the one where we assigned the numbers to the effects.

Put this logical function here:

jay d - 42

Instead of “true”, let’s use the comparison block.

jay d - 43

Insert the effect variable in the first window and type 0 in the second window.

jay d - 44

This means that if the effect is set to 0, then the display needs to show an indicator that there is no effect.

Let’s add this condition now.

We need a new variable “effectname” that we’ll later use in the functions for printing the effect names.

Create the variable:

jay d -45
jay d -46

Now add the “set effectname to” the block here:

jay d - 47

Go to the “Text” section and find the blank text box block:

jay d - 48

Add the text block and write “none” in it. This indicates that if the effect is set to 0, the effect is none.

jay d - 49

Now we need to repeat this step for all the names of the effects.

Extend the block by clicking on the plus sign at the bottom and close the block at the end by clicking on the small minus sign.

jay d - 50

When you entered all the logical functions in this block, it’s time to add the block to print the effect name on display.

Go to the “Display” section and use this block:

jay d- 51

To print the effect name, go to the “Text” section and choose the “create text with” block.

Put it here:

jay d - 52

Add a text window from the “Text” section and write “Effect:”.

jay d - 53

Put the “effectname” variable in the next window in the block.

Also, set the coordinates of the text.

Set the x to 10 and y to 40.

jay d - 54

This function should now print the effect name on display after it prints the volume value.

All it’s left is to print the intensity value.

Put another “print” block and edit it like this:

jay d - 55

To finalize this “draw” function, we’ll use the block “draw sprite to display”.

You can find it in the “Display” section.

jay d- 56

This is the finalized “draw” function:

jay d - 57

And this is what you should have up until now:

jay d - 58

The only thing remaining now is to define the input functions for the middle encoder that will regulate the effect and potentiometers that will regulate volume and effect intensity.

Let’s start with changing the effects. We’ll do this by pressing the middle encoder.

So, let’s go to the “Input” section and find the block that says “when button bottom left gets pressed”.

Drag and drop this block to the sketch.

jay d - 59

Choose the “encoder middle” option in the first drop-down menu and “pressed” in the second drop-down menu.

jay d - 60

To choose an effect when pressing the middle encoder, use the following function from the “Variables” section:

jay d- 61

Since we have 5 options for effect (none, low pass, high pass, reverb, and bit crusher), we’re going to use the “remainder” block from the “Math” section for dividing the number of times the middle encoder gets pressed by 5.

jay d - 62

Add the division block in the first window of the remainder block:

jay d- 63

Edit the block like this by adding the effect variable:

jay d - 64

Now add two of the functions that we created previously: setEffect and draw.

jay d- 65

This “Input” is done.

Let’s create one that will set the left potentiometer to control the intensity of the effect.

Find this potentiometer block in the “Input” section and edit it like this so it’s set to the left side:

jay d - 66

After this, add a block that is setting the intensity from the “DJ” section:

jay d- 67

Drag the value block from the bottom of the Input block and put it in the window instead of the value 100.

jay d- 68

Add the variable function that will set the intensity to the value that’s set like this:

jay d - 69

To finalize this block, add the “call draw” function:

jay d - 70

The left potentiometer input block is done!

This is what you should have for now until we add only one more block similar to the previous one:

jau d - 71

Lastly, let’s add one more Input block for the right potentiometer that will regulate the volume:

jay d- 72

Find the “set volume to” block in the “DJ” section and put it here:

jay d - 73

Drag the small value block into the window in the previous block:

jay d- 74

Now, find the “set” block in the “Variables” section and insert the value block here:

jay d - 75

Add the “call draw” function at the end of the block.

jay d - 76

This is it!

You should be ready to Run the project now. It might take a few moments to compile, so please be patient.

If the project doesn’t work when you try to Run it, go through the sketch one more time.

jay d - 77

Fun facts

Rudolph Thomas Bozak (1910–1982) was an audio electronics and acoustics designer and engineer in the field of sound reproduction.

Bozak is often remembered today for his advanced designs of DJ mixers which allowed the development of the concept of disc jockey mixing and ‘discotheques’. Beginning with the Bozak CMA-6-1 and CMA-10-1, 6 and 10-input monaural units of the mid 1960s, the peak of development was reached with the stereo Bozak CMA-10-2DL; a unit that was very quickly accepted as the standard of its day. The Bozak CMA mixers were very expensive: they used high-grade Allen-Bradley components, hand-selected transistors, and were of modular construction for ease of servicing and expansion.

DJ mixing also played a key role in disco music in the 1970s. In disco clubs, DJs would use mixers to transition seamlessly from one song to another and create a mix of songs that would keep the dancers energized. One of the pioneers of DJ mixing equipment design was Rudy Bozak. Beatmatching and beatmixing with a DJ mixer were first used to encourage dancers not to leave the dancefloor between songs. By beatmatching song A and song B, a DJ can transition seamlessly between two songs, without creating a break in the music. Typically, when a DJ is using beatmatching, they will let song A play until it nears its end. As song A is playing, the DJ “cues up” song B in their headphones and adjusts the speed of record player B until the beats of song A and song B are synchronized (“synced up”). Then, once the two songs’ beats are synchronized, they can slowly fade in song B while song A is nearing its ending. In the 2000s, DJ mixers have been used for harmonic mixing.

Post a Comment

Comment

steamkits.eu

Steamkits.eu is a creative lab focusing on, developing, and offering a selected STEAM education, creativity, critical thinking, innovation encouraging solutions.

Instagram

Contact us

Noliktavu iela 5, Dreiliņi, Latvia, LV-1021(+371) 67227742

readLine@steamkits.eu

Follow us
You don't have permission to register
X