|
Soldering Iron Kit |
|
|
arduino IDEArduino
|
DIY Analog VU meter with Arduino peak meter
An analog VU meter, or Volume Unit meter, is a device used in audio equipment to display the level of audio signal in decibels (dB). It is commonly found on audio mixing consoles, amplifiers, and other audio equipment. The primary purpose of a VU meter is to provide a visual representation of the audio signal's amplitude, helping users monitor and control the signal level to prevent distortion or ensure proper recording and playback. Despite the prevalence of digital meters, analog VU meters are still appreciated for their nostalgic and classic appearance, and many audio enthusiasts prefer their aesthetic and the way they visually represent audio signals.
Unfortunately even nowadays these instruments are relatively expensive and their price is higher than several hundred dollars. This time I will present you a way to make such an instrument yourself, which according to the characteristics does not lag behind commercial devices of this type.
The most expensive part of these Vu meters are of course the galvanometers which are actually precision microammeters with a moving needle. Such instruments were commonly used in sound recording devices manufactured at the end of the last century and can easily be found in electronic waste disposal sites.
This project is sponsored by PCBway. This year PCBway is celebrating the 10th anniversary of its successful existence. On the occasion of this event, PCBway provided its users with more conveniences such as big savings for certain products, as well as discounts of up to 80%. From July 1st to July 31st, log in to the PCBway site, and start the PCBway 10th Anniversary Tour, where you will enjoy Coupons, Lucky Draw, Exclusive Badges, unboxing blind boxes, and many other surprises. PCBway is always your great choice.
In particular I bought for $10 an old defective UHER 4200 Record Monitor tape recorder that contains two marked round VU meters with a built-in backlight. These instruments need to be connected to an audio signal source in some way.
For this purpose is used an electronic circuit (driver), which can be of passive or active type. The passive driver is simple to build but is relatively insensitive because you must overcome the voltage drop of the diodes with the signal. In that case, they are usually connected to the output of the amplifier and represent power meters.
An active driver contains ICs or transistors as an amplifier, and despite the fact that it is very sensitive, has a high input resistance and does not affect the source signal at all. n this particular project I will use two identical active drivers for both channels.
The device is relatively simple to build and consists of several parts:
- Two microamp meters,
- an operational amplifier IC (I used TL081, but another similar one can be used),
- some passive elements (capacitors, resistors and diode)
- and a potentiometer that changes the input sensitivity, and serves to calibrating the VU meter.
I also added a peak meter circuit, whose function is each time when the signal exceeds the specified level, turns on RED led. It was easiest for me to use an microcontroller for this purpose, because I can very simply and precisely set the activation threshold of the LED in the code. This is an Arduino Nano clone that costs less than $2 and doesn't add much to the cost of the device. Of course, if you have no experience with microcontrollers, you can make a very simple peak meter with transistors.
If we use the VU meter as an independent device as in my case, there is no need for calibration and the sensitivity can be adjusted with the potentiometer. Another option is to embed it in some audio device, for example between the preamplifier and the output amplifier, in which case we need to calibrate using a reference calibrated VU meter.
And now let's see how the device works in real conditions: We take the audio signal from the sound card of the PC to the input of the VU meter, and from there it continues to the input of the audio amplifier. In this way, the VU meter shows the level of the input signal, regardless of the intensity of the output volume. For a better visual impression, I made the appropriate rings on a 3D printer, and I installed the entire device in a box made of PVC material with a thickness of 3 and 5 mm and covered with self-adhesive colored wallpaper.
The device is powered by 12V DC.
#define L A0
#define R A1
int sigL = 0;
int sigR = 0;
void setup() {
pinMode(2, OUTPUT);
pinMode(3, OUTPUT);
}
void led() {
sigL = analogRead(L)*5;
sigR = analogRead(R)*5;
if (sigL > 600) {digitalWrite(2, HIGH);} else {digitalWrite(2, LOW);}
if (sigR > 650) {digitalWrite(3, HIGH);} else {digitalWrite(3, LOW);}
}
void loop() {
led();
}
DIY Analog VU meter with Arduino peak meter
- Comments(0)
- Likes(0)
- 0 USER VOTES
- YOUR VOTE 0.00 0.00
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
More by Mirko Pavleski
- Arduino 3D Printed self Balancing Cube Self-balancing devices are electronic devices that use sensors and motors to keep themselves balanc...
- Arduino Rotary encoder combination lock (Arduino door lock system with Rotary Encoder) Rotary dial safes typically use a mechanical combination lock. They are valued for their simplicity...
- DIY DRSSTC Music Tesla coil with Interrupter using cheap Driver Module DRSSTC (Dual resonant solid state tesla coil) is a type of Tesla coil that uses solid-state compone...
- Arduino HPDL1414 Retro Clock with Set and Alarm Functions The HPDL-1414 is a 16-segment LED display with four printable fields that is over twenty years old....
- How to turn a 7 inch Elecrow pi terminal into a standalone SDR Radio Today I received the Pi Terminal-7” IPS HMI CM4 Panel All-In-One Module Raspberry Pi Computer from E...
- DIY Simple Functional Lakhovsky MWO (Multiwave Oscillator) Therapy Device The Lakhovsky Multiwave Oscillator (LMO) is a device that was developed by Georges Lakhovsky in the...
- DIY simple Advanced Weather station (5day forecast) and Internet Radio ELECROW crow panel 2.8 inch esp32 display module is ideal for making simple but also relatively com...
- How to turn a Mouse into a Wireless Tuning Knob for SDR Radio A software defined radio basically consists of an RF front-end hardware part and specialized softwa...
- Arduino Car Paint Thickness Indicator - Meter A paint thickness indicator is useful in industries like automotive, aerospace, marine, and constru...
- Simple Arduino Solar Radiation Meter for Solar Panels The sun provides more than enough energy to meet the whole world’s energy needs, and unlike fossil f...
- Simple ESP32 CAM Object detection using Open CV Object detection is a computer vision technique that involves identifying and locating objects with...
- Arduino OPLA IoT Kit blink_ Example and Symon Says Game The Arduino Opla IoT Kit is a versatile kit designed for creating and managing Internet of Things ...
- How to make Simplest and Cheapest compact Internet Radio - Yoradio Internet radio is a digital audio service that streams music, news, and other forms of audio conten...
- DIY Simple STM32 Virtual Electronic Finderscope (Stellarium Compatible) A finderscope is a small auxiliary telescope mounted on the main telescope to help locate and cente...
- Simple TEF6686 DSP AM FM tuner with ESP32 microcontroller The TEF6686 radio module is intended for AM/FM receivers for cars. This miniature module has amazin...
- ELECROW Crow Panel 2.8-ESP32 HMI Display - simple TFT_eSPI examples These days I received a shipment from Elecrow that contains several components that I ordered a wee...
- DIY Advanced Theremino Sonar Theremino is an open-source platform designed for hobbyists and makers, providing a versatile framew...
- Single Mosfet - Class E - Solid State Tesla Coil A Solid State Tesla Coil (SSTC) is a type of Tesla coil that uses solid-state components such as tr...
-
-
Helium IoT Network Sensor Development board | H2S-Dev V1.2
115 0 0 -
-
-
-
-
-
3D printed Enclosure Backplate for Riden RD60xx power supplies
181 1 1