Arduino LCD Metronome

LCD Metronome (1)

Connecting the LCD

The first step is to wire up the LCD. The HD44780 has 16 pins:
LCD Metronome (1)

Pin 1 – Vss
Pin 2 – Vdd
Pin 3 – Vo
Pin 4 – RS
Pin 5 – R/W
Pin 6 – E
Pin 7 – DB0
Pin 8 – DB1
Pin 9 – DB2
Pin 10 – DB3
Pin 11 – DB4
Pin 12 – DB5
Pin 13 – DB6
Pin 14 – DB7
Pin 15 – A
Pin 16 – KThis is how the pins should be connected:
LCD1 – GND
2 – 5v
3 – Middle pin of 44K pot
4 – Arduino 12
5 – GDN
6 – Arduino 11
11 – Arduino 5
12 – Arduino 6
13 – Arduino 7
14 – Arduino 8
15 – 5v
16 – GND 

The rest of the LCD pins can be left blank. The pot needs the other pins to be connected to 5v and GND. For a more in depth look see http://arduino-for-beginners.blogspot.com/2010/11/arduino-output-lcd-modules-part-1.html

Step 3: Testing the LCD

LCD Metronome Schematic (1)

To test the LCD upload the attached code, you should see the words “Hello, world” and the number of seconds since you uploaded the code. If there is a backlight but no text try turning up the potentiometer
lcd_test.pde565 bytes

Building the amplifier

Next up is the amp circuit. Be very careful to get the IC and 100uF capacitor the right way round. The pot controls volume.

Connecting the Rotary Encoder

The final hardware step is to connect the rotary encoder. The rotary encoder is like a pot but can rotate all the way round, have a button. They work by changing the voltage between two pins.

There are 5 pins, generally 3 on top and 2 at the bottom, you will need to solder wires to the pins (they’ll short if you just plug them into a breadboard, due to the 2 at the bottom being in line with one at the top).

Pressing the button will allow you to increase the BPM in 10s, pressing again will make it go back to 1s.

Look at the drawing below for how to wire them.

Uploading the Code

With all the connections made plug in your Arduino.

A problem!
When a button is pressed it can sometimes “bounce “, causing the signal to rapidly go from high to low to high to low, rather than a smooth transition from low to high then high to low. Luckily this problem can be solved by the brilliant Arduino Bounce Library . First, make a folder in your sketchbook folder called “libraries”. Then unzip the Arduino Bounce Library into the library folder.

For more detail: Arduino LCD Metronome

Leave a Comment

Your email address will not be published. Required fields are marked *