|
|
Arduino Nano R3 |
x 1 | |
|
|
GP1287 VFD Display |
x 1 | |
|
|
Potentiometer, 10 kohm |
x 1 | |
|
|
Resistor 10k ohm |
x 2 | |
|
|
Capacitor 10 µF |
x 1 | |
|
|
5V 2.5A Switching Power Supply |
x 1 |
|
Soldering Iron Kit |
|
|
arduino IDEArduino
|
Arduino FFT Spectrum analyzer on VFD display GP1287
An audio spectrum analyzer is a device that visualizes the frequency content of an audio signal. It represents the distribution of frequencies in a graphical form, typically displaying amplitude or power on the y-axis and frequency on the x-axis. This tool is commonly used in audio engineering, music production, and sound analysis for various purposes.
This time I will describe how to make an audio FFT spectrum analyzer on a 256x50 pixel VFD display.

These types of displays emit very bright light with high contrast and clear visibility from wide angles, and have a wonderful retro look.
The device is very simple to build and has only a few components:
- Arduino nano microcontroller
- GP1287 VFD display with resolution of 256x50 pixels
- stereo potentiometer
- two capacitors
- two resistors
- and Button

Thanks to the two libraries used (U8G2 and fix_fft), the code is very simple and can be easily modified. The audio input to the Arduino is on A0, with bias at the mid point by 10K to Ground and 10K to +5V. At the input we can also put a potentiometer to control the amplitude of the input signal.
First, let's look at the case when we bring a signal with a certain frequency and shape to the input. For this purpose, I will use the signal generator that is part of my oscilloscope.

The spectrogram clearly shows the fundamental signal, as well as its harmonics. I will test it with square and sine wave. As we change the frequency of the oscillator, so does the fundamental of the analyzer display. Here we can see that the frequency range of this instrument is from 0Hz to 4.5 KHz, where most of the music signals are found. However, the purpose of this device is not to perform any precise audio analyzes and measurements, but primarily has a visual function.
The following image shows how the device works in conditions when we bring a complex audio signal to the input.

Otherwise, the device has two modes of operation that can be changed with the push of a button, in one mode the bars are next to each other, and in the other there is a certain distance between them.

Finally, the entire assembly is housed in a suitable box. This is not a professional tool because it has relatively low resolution and frequency range, but can serve as a great educational tool and visualizer for some audio project.
#include "U8g2lib.h"
#include "fix_fft.h"
#include <SPI.h>
int buttonPin = 2;
int oldButtonVal = 0;
// u8g2 set up, bar, line position L & R
#define LINEY 40
#define LINEXL 0
#define LINEXR 256
#define SAMPLES 128
#define AUDIO A0
U8G2_GP1287AI_256X50_1_4W_SW_SPI u8g2(U8G2_R0, /* clock=*/ 13, /* data=*/ 11, /* cs=*/ 10, /* dc=*/ 9, /* reset=*/ 8);
//U8GLIB_ST7920_128X64_1X lcd(EN, RW, CS); // serial use, PSB = GND
char im[SAMPLES];
char data[SAMPLES];
int barht[SAMPLES];
int nPatterns = 2;
int lightPattern = 1;
void setup()
{
u8g2.begin(); // inti u8g2
u8g2.setContrast(25);
pinMode(2, INPUT_PULLUP);
}
void loop()
{
static int i, j;
int val;
// get audio data
for(i = 0; i < SAMPLES; i++)
{
val = analogRead(AUDIO)* 50; // 0-1023
data[i] = (char)(val/4 - 128); // store as char
im[i] = 0; // init all as 0
}
// run FFT
fix_fft(data, im, 7, 0);
// extract absolute value of data only, for 64 results
for(i = 0; i < SAMPLES/2; i++)
{
barht[i] = (int)sqrt(data[i] * data[i] + im[i] * im[i]);
}
for(i = 0, j = 0; i < SAMPLES/2; i++, j += 2)
{
barht[i] = barht[j] + barht[j + 1];
}
// u8g2 barchart
barchart(SAMPLES/4, barht); // plot SAMPLES / 4 = 32 as barchart gen cannot handle 128 bars
}
// plot line and bar at position and height
void barchart(int n, int bh[])
{
int i, s, w; // bars, spacing and width
s = (LINEXR - LINEXL) / n;
int buttonVal = digitalRead(buttonPin);
if (buttonVal == LOW && oldButtonVal == HIGH) {// button has just been pressed
lightPattern = lightPattern + 1;
}
if (lightPattern > nPatterns) lightPattern = 1;
oldButtonVal = buttonVal;
switch(lightPattern) {
case 1:
w = s / 2;
break;
case 2:
w = s / 1;
}
u8g2.firstPage();
do
{
u8g2.setFont(u8g2_font_6x12_tf);
u8g2.drawStr(80, 7, "FFT Audio Spectrum");
u8g2.drawLine(LINEXL, LINEY, LINEXR, LINEY);
u8g2.drawStr(0, LINEY + 10, "0");
u8g2.drawStr(50, LINEY + 10, "1k");
u8g2.drawStr(110, LINEY + 10, "2k");
u8g2.drawStr(164, LINEY + 10, "3k");
u8g2.drawStr(220, LINEY + 10, "4k");
u8g2.drawStr(240, LINEY + 10, "Hz");
for(i = 0; i < n; i++)
{
u8g2.drawBox(LINEXL + s * i, LINEY - bh[i], w, bh[i] + 1); // u8glib doesn't accept box height of 0
}
}while(u8g2.nextPage());
}
Arduino FFT Spectrum analyzer on VFD display GP1287
Raspberry Pi 5 7 Inch Touch Screen IPS 1024x600 HD LCD HDMI-compatible Display for RPI 4B 3B+ OPI 5 AIDA64 PC Secondary Screen(Without Speaker)
BUY NOW- Comments(0)
- Likes(2)
-
Jorge Tavares
Feb 24,2025
-
M AudioModule
Feb 20,2024
- 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...
-
Building a Mini Fostex Horn Speaker with a 2-Inch Full-Range Driver
A back-loaded horn speaker is a loudspeaker design that channels the rear sound wave of a driver th...
-
ESP32 Moon Lamp That Shows the Real Moon Phase on Crowpanel Round Dispaly
Recently on the Hackaday portal I came across a very interesting project called Moon Display by aut...
-
40-Year-Old DIY Power Amplifiers – Do They Still Work - 500W MOSFET & Transistor Amps
This time I want to describe my two DIY super powerful audio amplifiers that I made about 40 years ...
-
Wi-Fi HaLow Explained! Long-Range Camera Test up to 300m (ESP32 + ThinkNode G4 from ELECROW)
I recently needed to install a security camera at a relatively large distance from my home, more pre...
-
Simple Object Recognition with the UNIHIKER K10 – No TensorFlow, No Internet, No Cloud AI
Object recognition has become one of the most popular applications of artificial intelligence and em...
-
DIY PCL82 Tube Amplifier, Single-Ended Amp with Amazing Sound
The idea for this project came from a local electronics magazine called EMITER, issue 12/13 from 20...
-
Simple MCP2036 SDR Radio - The Most Unusual Software Defined Radio
SDR (Software Defined Radio) is a radio communication system where many of the key electronic compo...
-
Elecrow All-in-One Arduino Starter Kit Review - 20 Projects & 16 Modules
This time I will describe a simple and practical way to enter the world of microcontrollers, specif...
-
ESP32-C3 Color Detector with TCS34725, Real-Time RGB Detection & Web Interface
Color detection is a fundamental task in many embedded systems – from industrial sorting machines t...
-
DIY ESP32 Telegram Flood Protection System - Smart Home Automation
Recently I had an unpleasant experience in my home, specifically my ground floor was flooded as a r...
-
Real-Time Air Traffic Radar using ESP32 + ADS-B Data
ADS-B, which stands for Automatic Dependent Surveillance-Broadcast, is the modern standard for trac...
-
DIY Green Laser Night Sky Object Finder - Find Stars & Galaxies Instantly with great accuracy
As an amateur astronomer, especially at the beginning, the most difficult part of observing the nig...
-
DIY Avionics Simulator with ESP32 - Artificial Horizon, Compass & Altimeter
The inspiration for this project comes from classical aircraft cockpit instruments used for navigat...
-
DIY Miniature X-Ray Machine using a TV Vacuum Tube DY86
An X-ray machine (or radiograph) is a quick, painless medical test that produces images of the struc...
-
Simple SDR Receiver Using 2x NE612 - Dual Conversion, Superheterodyne (0.1–30 MHz)
SDR (Software Defined Radio) is a radio system in which most of the functions of a classic radio (f...
-
DIY Vintage TV VU Meter with peak indicators
Some time ago in one of my projects I presented you a way to turn a black and white old mini TV int...
-
DIY Tesla Coil based Plasma Rife Machine
In several of my previous videos, I presented you with different ways to make a Rife Machine, from ...
-
Programmable Mist Maker - XIAO / QT PY Extension
2118 2 2 -
RadioHAT - Raspberry Pi radio development platform
1800 0 4 -
QWIIC-VL53L4CD Time-of-Flight Distance Sensor Module
2012 0 2 -
-
-
ARPS-2 – Arduino-Compatible Robot Project Shield for Arduino UNO
4012 0 6 -
-
A Compact Charging Breakout Board For Waveshare ESP32-C3
4749 3 8 -
AI-driven LoRa & LLM-enabled Kiosk & Food Delivery System
5562 2 2 -







