All Band Radio Uses Arduino And Si4730

It is getting harder and harder to tell homemade projects from commercial ones. A good case in point is [Mirko’s] all band radio which you can see in the video below the break. On the outside, it has a good looking case. On the inside, it uses a Si4730 radio which has excellent performance that would be hard to get with discrete components.

The chip contains two RF strips with AGC, built-in converters to go from analog to digital and back and also has a DSP onboard. The chip will do FM 64 to 108 MHz and can demodulate AM signals ranging from 153 kHz to 279 kHz, 520 kHz to 1.71 MHz, and 2.3 MHz to 26.1 MHz. It can even read RDS and RBDS for station information. The output can be digital (in several formats) or analog.

Continue reading “All Band Radio Uses Arduino And Si4730”

Name That Unknown RF Signal With A Little FFT Magic

Time was once that the amateur radio bands were an aurally predictable place. Spinning the dial up and down the bands, one heard familiar sounds – the staccato of Morse, the [Donald Duck] of sideband voice transmissions, and the occasional flute-like warble of radioteletype signals. Now, the ham bands are full of exotic signals encoding all manner of digital signals, each one with a unique sound and unique demodulation needs. What’s a ham to do?

Help is on the way. [José Carlos Rueda] has made progress toward automatically classifying unknown signals by modifying a Shazam-like app. Shazam is a popular smartphone app that listens to a few seconds of a song, creates an audio fingerprint of it, and searches a massive database of songs for a match. [Rueda] used a homebrew version of the app to search a SQL-lite database of audio fingerprints populated not with a playlist of popular music, but with samples from every known signal type in the Signal Identification Wiki. The database contains hashes for an FFT of each sample, which can be easily searched. With a five to ten second sample of a signal, captured either live over a microphone or from a recording,  he is able to identify the signal automatically.

Whether it be the weird, dissonant wail of PSK-31 or the angry buzzing of PACTOR, the goings-on across the bands no longer have to remain a mystery. We really like the idea here, and wonder if it can be expanded upon to visually decode signals based on their waterfall signatures using TensorFlow. There are some waterfall examples in [Danie Conradie]’s excellent article on RF modulation that could get you started.

[via RTL-SDR.com]

The $50 Ham: Going Mobile

So far in this series, everything we’ve covered has been geared around the cheapest and easiest possible means of getting on the air: getting your Technician license, buying your first low-end portable transceiver, and checking in on the local repeater nets. That’s all good stuff, and chances are you can actually take all three of those steps and still have change left over from your $50 bill. Like I said, amateur radio doesn’t have to be expensive to be fun.

But at some point, every new ham is going to yearn for that first “real” rig, something with a little more oomph in terms of power, and perhaps with a few more features. For many Technicians, the obvious choice is a mobile rig, something that can be used to chat with fellow hams on the way to work, or to pass the time while on long road trips. Whatever your motivation is, once you buy a radio, you have to install it, and therein lie challenges galore, both electrical and mechanical.

I recently took the plunge on a mobile rig, and while the radio and antenna were an order of magnitude more expensive than $50, the process of installing it was pretty cheap. But it’s not the price of the thing that’s important in this series; rather, it’s to show that ham radio is all about doing it yourself, even when that means tearing your car apart from the inside out and rebuilding it around a radio.

Continue reading “The $50 Ham: Going Mobile”

Ham Antennas From MIT

Dealing with an antenna is one of those topics we never feel like we know enough about. MIT had a live stream of [Dr. Kiersten Kerby-Patel] discussing antennas in a talk, sponsored by the ham radio club on campus. You can see the recording below.

The main assertion of the presentation is that everything is a dipole unless it is a loop. Although the professor probably deals with antennas at an extremely high theoretical level, she did a great job of keeping it aimed at ham radio operators.

Continue reading “Ham Antennas From MIT”

A Mini SDR Receiver Using An Audio DSP

Software defined radio or SDR is the most exciting frontier in the field of radio, transferring as it does all signal functions from the analogue to the digital domain. Radios using SDR techniques can be surprisingly straightforward and easy to understand, and [Ray Ring]’s little SDR receiver manages to combine this with the novel use of an audio DSP rather than a computer to perform its SDR functions.

The front end is a conventional enough direct conversion design with an Si5531 clock generator providing I and Q phase-shifted local oscillator signals to a TS3A5017 analogue switch used as a mixer. An unexpected presence is an LTC6252 op-amp as an RF amplifier, but the special part comes after the I and Q baseband signals have been filtered. The SDR part of this receiver is an audio DSP, but it’s one that might not be an immediate choice. The Spin Semiconductor FV-1 is a dedicated digital reverb chip for musical effects boxes, but it comes with the feature that its internal DSP core can access custom code from an external ROM. [Ray] has written his own code for demodulation of AM, USB, and LSB signals rather than musical effects, and used the device’s left and right audio channels to process I and Q quadrature signals. The use of a single purpose chip to do something its designers never intended gives it the essence of a good hack, and we’re mightily impressed at his spotting the potential for an SDR in a musical effect. Hear it in action in the video below the break.

Meanwhile if the operation of a receiver such as this one is a mystery to you, we published a handy primer back in 2017.

Continue reading “A Mini SDR Receiver Using An Audio DSP”

[Eric] Talks Crystal Radios

The AM broadcast band doesn’t have a lot of mainstream programming on it across much of the United States today. That’s a shame because a lot of kids got their first taste of radio and electronics by building simple crystal radios. [Eric Wrobbel] has a well-done page discussing some of the crystal radio kits and toys that have been around.

[Eric] should know, as he’s written two books on toy crystal radios. The pictures range from a 1945-era “Easy Built Radio Kit” which looks like a piece of masonite with a coil, some Fahnestock clips, and a cat whisker, to a very slick looking Tinymite from 1949. Honestly, though, the one we really want is the X-50 Space Helmet Radio that comes in a box marked “For Young Moon Travelers.”

Continue reading “[Eric] Talks Crystal Radios”

RF Modulation: Crash Course For Hackers

When you’re looking to add some wireless functionality to a project, there are no shortage of options. You really don’t need to know much of the technical details to make use of the more well-documented modules, especially if you just need to get something working quickly. On the other hand, maybe you’ve gotten to the point where you want to know how these things actually work, or maybe you’re curious about that cheap RF module on AliExpress. Especially in the frequency bands below 1 GHz, you might find yourself interfacing with a module at really low level, where you might be tuning modulation parameters. The following overview should give you enough of an understanding about the basics of RF modulation to select the appropriate hardware for your next project.

Three of the most common digital modulation schemes you’ll see in specifications are Frequency Shift Keying (FSK), Amplitude Shift Keying (ASK), and LoRa (Long Range). To wrap my mechanically inclined brain around some concepts, I found that thinking of RF modulation in terms of pitches produced by a musical instrument made it more intuitive.

And lots of pretty graphs don’t hurt either. Signals from two different RF dev boards were captured and turned into waterfall and FFT plots using a $20 RTL-SDR dongle. Although not needed for wireless experimentation, the RTL-SDR is an extremely handy debugging tool, even to just check if a module is actually transmitting. Continue reading “RF Modulation: Crash Course For Hackers”