Say The Magic Word, And The TinySA Goes Ultra

We’ve looked at the TinySA spectrum analyzer in the past. However, the recent Ultra edition offers an increase in range from 800 MHz to 6 GHz. How does it work? [IMSAI Guy] tells us in a recent video that you can watch below. In addition to an increased frequency range, the new device offers a larger display and enhancements to the signal generator and bandpass filtering. It also has an optional LNA. All this, of course, is at a price since the Ultra sells at a little more than twice the original unit’s price. Still, $120 or so for a 6 GHz spectrum analyzer isn’t bad.

For some reason, you have to put a passcode in to enable the Ultra mode, although the passcode appears to be common knowledge and available on the device’s wiki. You can presume they could, at some point, make this feature or others require a paid passcode, but for now, it is just a minor inconvenience. Reminds us of a certain oscilloscope that’s become quite popular in our community.

One thing you should be aware of, however, is that the Ultra mode uses a mixer to downconvert the incoming signal to the ordinary 800 MHz range. That means, as you can see in the video, that the local oscillator puts out some signal at the input. The level is relatively low, but still something to be aware of if you are trying to make a precision measurement.

The video compares the device to an HP 8591E spectrum analyzer. It tops out at 1.8 GHz and runs about $2,500 new. Even on eBay, you can expect to pay between $500 and $1000 for one of these. The results seem to be comparable, for the most part.

We looked at the device’s predecessor back in 2020. We also did a full-blown review a little bit later.

Continue reading “Say The Magic Word, And The TinySA Goes Ultra”

Balancing A Motor With An Oscilloscope

With all things in life, one must seek to achieve balance. That may sound a little like New Age woo-woo, but if you think it’s not literally true, just try tolerating a washing machine with a single comforter on spin cycle, or driving a few miles on unbalanced tires.

Anything that rotates can quickly spin itself into shrapnel if it’s not properly balanced, and the DIY power tools in [Matthias Wandel]’s shop are no exception. Recent upgrades to his jointer have left the tool a bit noisy, so he’s exploring machine vibrations with this simple but clever setup. Using nothing but a cheap loudspeaker and an oscilloscope, [Matthias] was able to characterize vibrations in a small squirrel-cage blower — he wisely chose to start small to validate his method before diving into the potentially dangerous jointer. There was quite a lot to be learned from the complex waveforms coming back from the transducer, analysis of which was greatly helped by the scope’s spectrum analyzer function. The video below shows the process of probing various parts of the blower, differentiating spectral peaks due to electrical noise rather than vibration, and actually using the setup to dynamically balance the fan.

We’d rate this as yet another handy shop tip from [Matthias], and we’ll be looking out for the analysis of his jointer. Want to do the same but you don’t have an oscilloscope? No problem — an earbud and Audacity might be all you need.

Continue reading “Balancing A Motor With An Oscilloscope”

Character VFD Becomes Spectrum Analyzer

These days, streaming services are a great way to listen to music or podcasts on your computer or on the go. However, they lack one feature of the MP3 players and streamers of old: visualizations! [mircemk] is a fan of those, and has built a hardware spectrum analyzer that pumps with the music.

The build relies on a 20×2 character VFD display that looks great, with high brightness and excellent contrast. It can be easily driven from a microcontroller, as it has a controller on board compatible with the typical HD44780 command set. On Arduino platforms, this means the display can easily be driven with the popular LiquidCrystal library.

The Arduino Nano inside takes in the audio signal via its analog inputs. It then processes the audio with the fix_fft library, which runs a Fast Fourier Transform in order to figure out the energy level of each frequency bin in the audio spectrum for both the left and right channels. This data is then sent to the screen for display. It’s impressively fast and smooth, with the display dancing along with the beat nicely as [mircemk] tests it out with some tunes.

If it looks familiar, it’s because it’s an updated version of a prior project from [mircemk]. We saw it previously as a VU meter that pulsed with the beat, an altogether simpler visualization but still a cool one. Video after the break.

Continue reading “Character VFD Becomes Spectrum Analyzer”

Big Audio Visualizer Pumps With The Music

A spectrum analyzer is a great way to create exciting visuals that pulse in time with music. [pyrograf] wanted a big one as a display piece, so set about whipping up something of their very own.

An ESP32 microcontroller serves as the heart of the build, with its high clock rate and dual cores making it a highly capable choice for the job. Audio from a microphone is amplified and pumped into the ESP32’s analog input. Core 0 on the ESP32 then runs a Fast Fourier Transform on the input audio in order to determine the energy in each frequency band. The results of this FFT are then passed to Core 1, which is used to calculate the required animations and pipe them out to a series of WS2812B LEDs.

Where this build really shines, though, is in the actual construction. Big chunks of acrylic serve as diffusers for the LEDs which light up each segment of the spectrum display. Combine the big pixel size with a nice smooth 30 Hz refresh rate on the LEDs, and the result is a rather large spectrum analyzer that really does look the business.

We’ve seen some similar builds over the years, too. Video after the break.

Continue reading “Big Audio Visualizer Pumps With The Music”

Pluto Spectrum Analyzer Uses Command Line

If you don’t care about shortwave frequencies, the PlutoSDR is a great deal. The device is supposed to be an evaluation board for Analog Device’s radio chips, but it does great as a software-defined radio that can receive and transmit and it even runs Linux internally. [SignalsEverywhere] shows how to use it as a spectrum analyzer that works from the command line in the video you can see below.

The software used is Retrogram. Despite the ASCII graphics, the program has many features. You can use simple keystrokes to change the center frequency, the sampling rate, the bandwidth, and more. You can run the software on a Linux host or compile a binary on the box or cross-compile using tools on the Raspberry Pi.

Continue reading “Pluto Spectrum Analyzer Uses Command Line”

ESP32 Spectrum Analyzer Taps Into Both Cores

We probably don’t need to tell the average Hackaday reader that the ESP32 is a powerful and extremely flexible microcontroller. We’ve seen some incredible projects using this affordable chip over the last few years, and by the looks of it, the best is yet to come. That’s because it always takes some time before the community can really figure out how to get the most out of a piece of hardware.

Take for example the Bluetooth audio player that [squix] was recently working on. Getting the music going was no problem with the esp32-a2dp library, but when he wanted to add some visualizations the audio quality took a serious hit. Realizing that his Fast Fourier transform (FFT) code was eating up too much processor power, it seemed like a great time for him to explore using the ESP32’s second core.

[squix] had avoided poking around with the dual-core nature of the ESP32 in the past, believing that the second core was busy handling the WiFi communication. But by using the FreeRTOS queue system, he wrote some code that collects audio data with one core and runs the actual FFT magic on the other. By balancing the workload like this, he’s able to drive the array of 64 WS2812B LEDs on the front of the Icon64 seen in the video after the break.

Even if you’re not terribly interested in running your own microcontroller disco, this project may be just the example you’ve been waiting for to help get your mind wrapped around multitasking on the ESP32. If you want to master a device with this many tricks up its sleeve, you’ll need all the help you can get.

Continue reading “ESP32 Spectrum Analyzer Taps Into Both Cores”

Product Review: The TinySA, A Shirt-Pocket Sized Spectrum Analyzer

I suppose most of us have had the experience of going to the mailbox and seeing that telltale package in the white plastic bag, the sign that something has just arrived from China. This happened to me the other day, and like many of you it was one of those times when I puzzled to myself: “I wonder what I bought this time?”

With so many weeks or months between the time of your impulsive click on the “Buy Now” button on AliExpress or eBay and the slow boat from China actually getting the package to your door, it’s easy enough to forget what exactly each package contains. And with the price of goods so low, the tendency to click and forget is all the easier. That’s not necessarily a good thing, but I like surprises as much as the next person, so I was happy to learn that I was now the owner of a tinySA spectrum analyzer. Time for a look at what this little thing can do.

Continue reading “Product Review: The TinySA, A Shirt-Pocket Sized Spectrum Analyzer”