To download NI software, including the products shown below, visit ni.com/downloads.
1. Overview
The application continuously acquires sound, extracts tones, guesses at what string is being tuned, and gives you a dial-type indicator to help zoom in on a perfect tuning. The application can also play the tone for the string you are trying to tune, and will play custom frequencies too (such as a 440 A).
2. Description
I have done a few wingnut things with LabVIEW every now and then. A few years ago I used LabVIEW, an old monitor, some cardboard boxes 2x4’s and drainage pipe to make a robot for our church’s vacation bible school. The robot recorded kid’s voices talking and played them back with echo / robot effects and then periodically stopped and spoke the bible verses of the day. It was a big hit!
I keep a bunch of guitars in my office at home that I grab and play when I need a break or when I am seeking inspiration. One night, I was playing with a rather out-of-tune instrument (when I should have been working) and I thought to myself that LabVIEW is pretty good at data acquisition and analysis (an understatement). Making a guitar tuner in LabVIEW should be a piece of cake! After a little screwing around to figure out how to analyze acquired guitar sounds from my computer’s built-in mic I built Guitar Zapper – a LabVIEW powered guitar tuner application.
3. Requirements
4. Steps to Implement or Execute Code
5. Additional Information or References
Guitar Zapper Screenshot.PNG
**The code for this example has been edited to meet the new Community Example Style Guidelines.**
Description-Separate-2Example code from the Example Code Exchange in the NI Community is licensed with the MIT license.
Great job! I'm not a guitar tuner expert but if I may suggest you something, you could get some inspiration from a simple common guitar tuner interface like the one in the picture.
![]()

so, has anyone ever successfully tuned a guitar with this? is there information lacking?
## recording the signals, which are measnt to be analysed
alexderjuengere_0-1777464671344.png
- recording the sound signal still works in windows 11, labview 64 bit, tested with a plugin Logitech Headset G332
- when trying to use the built-in microphone of a Microsoft Surface 8 running Windows 11, this results in error 4800, device 0 can't be found
## analyzing the recorded mono-audio-signal
- I converted the express.vi in an usual sub.vi
- in the original .vi the stereo signal is converted to a mono signal, by simple ignoring the other channel
- the signal is then fed into "extract multiple tone information.vi"
alexderjuengere_1-1777464884935.png
the detected frequencies are meant to be proessed further, but there is no need for as there is no frequnecy to be processed further
## problem
- when I record the sound of a guitar string via microphone, it is easy to visualize the recorded data frame, but no frequency is detected
- even when I create a sinus signal with an app eg. phybox, record it via microphone, no frequency is detected
alexderjuengere_2-1777466160791.png
yes, I know about "C:\Program Files\National Instruments\LabVIEW 2026\examples\Signal Processing\Waveform Measurements\Multitone with Amplitudes.vi" - but I don't want to simulate a multitone signal, I want to record one.
I suppose there is information missing e.g. what is 'treshhold = 1M' meant to be? counts? how to define a valid measurement range?
attached as labvie 2020
looks like I can't attach anything
- via smartphone app, I generate a single-tone at 440 hz for many seconds, at a 'low volume', while press the microphone at the smartphones speaker
- I set the threshold to 1E-5, and -alas - I now see there is a detected frequnecy around 440 hz
alexderjuengere_0-1777473042788.png