|
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...
- Review and Comparison of Three Inexpensive Metal Detector Kits A metal detector is a device used to detect the presence of metal objects in the ground or other ma...
- How to make simple Arduino RGB Led strip VU Meter VU meter or volume unit meter is a device intended for visual presentation of the audio signal. It ...
- DIY Simple Antistress and Relaxation PEMF Device based on Schumannn resonance frequency 7.83 Hz Schumann resonances are global electromagnetic resonances, generated by lightning discharges in the...
- DIY Si4825 A10 multiband Radio (MW,SW,FM) Thanks to the production of specialized radio chips, nowadays it is possible to make a quality mult...
- DIY simple HUNTER Led Game with Arduino Some time ago I presented you a simple to make, but interesting game, a 1D version simulation of "P...
- XHDATA D-109WB Radio Short Review with complete disassembly Recently I received a shipment of a radio from the brand XHDATA model: D-109WB, so I immediately de...
- 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 ...
-
-
DIY Fiber Laser Tube Cutting Machine
82 0 1 -
-
-
DIY Transistor Tester | Build Your Own LCR Meter at Home with Arduino Nano
242 0 3 -
-
-
ESP32-S3 breakout board for motorizing Iron Man helmets
228 0 2