Why You Should Care About Software Defined Radio

It hasn’t become a household term yet, but Software-Defined Radio (SDR) is a major player on the developing technology front. Whether you’re building products for mass consumption, or just playing around for fun, SDR is worth knowing something about and I’ll prove it to you.

Continue reading “Why You Should Care About Software Defined Radio”

[Balint]’s GNU Radio Tutorials

Waterfall

[Balint] has a bit of history in dealing with software defined radios and cheap USB TV tuners turned into what would have been very expensive hardware a few years ago. Now [Balint] is finally posting a few really great GNU Radio tutorials, aimed at getting software defined radio beginners up and running with some of the coolest hardware around today.

[Balint] is well-known around these parts for being the first person to create a GNU Radio source block for the implausibly inexpensive USB TV tuners, allowing anyone with $20 and enough patience to wait for a package from China to listen in on everything from 22 to 2200 MHz. There’s a lot of interesting stuff happening in that band, including the ACARS messages between airliners and traffic control, something that allowed [Balint] to play air traffic controller with a minimal amount of hardware.

Right now the tutorials are geared towards the absolute beginner, starting at the beginning with getting GNU Radio up and running. From there the tutorials continue to receiving FM radio, and with a small hardware investment, even transmitting over multiple frequencies.

It’s not much of an understatement to say software defined radio is one of the most versatile and fun projects out there. [Balint] even demonstrated triggering restaurant pagers with a simple SDR project, a fun project that is sure to annoy his coworkers.

Continue reading “[Balint]’s GNU Radio Tutorials”

Listening To Electromagnetic Interference With A RTLSDR Dongle

Being curious by nature, [Marios] decided to see what kind of radio-frequency emissions may be generated by an Arduino connected to a simple breadboard wire, and more importantly try to pick them up using a RTLSDR dongle. Electromagnetic interferences are disturbances that affect electrical circuits due to either electromagnetic induction or electromagnetic radiation. Before going into the market, all electrical devices are thoroughly checked for unwanted electromagnetic emissions so they usually aren’t obvious suspects when such problems arise.

Using the Arduino embedded PWM controller in fast PWM mode and by manipulating the duty cycle, he actually managed to create a primitive form of amplitude modulation and was able to transfer a very simple audible signal at several frequencies up to 1.75GHz. Embedded after the break here is video of the system at work.

As a side note, did you know that during the solar storm of 1859 the EMI were so strong that the telegraph operators received several shocks? Pipelines maintenance systems also have to be aware of such events, that can lead sensors to provide inaccurate results.

Continue reading “Listening To Electromagnetic Interference With A RTLSDR Dongle”

Using SDR To Read Your Smart Meter

[BeMasher] was dissatisfied with the cost of other solutions to read his smart meter, so he made a project to read it himself using an rtl-sdr dongle.

Using his hacking and reverse engineering skills along with a $20 RTL-SDR dongle, [BeMasher] wrote rtlamr to automatically detect and report the consumption information reported by smart meters within range. Though designed for his Itron C1SR, [BeMasher] claims that any electronic receiver transmitter (ERT) capable smart meter should work.

[BeMasher]’s Itron C1SR smart meter broadcasts both interval data and standard consumption in the 915MHz ISM band using a Manchester encoded, frequency hopping spread spectrum protocol. [BeMasher] used the RTL-SDR dongle to do the signal capture and analysed the resulting signal in software afterwards. [BeMasher] did a great job of going through the theory and implementation of analysing the resulting data capture, so be sure to check it for an in-depth analysis.

If the RTL-SDR dongles are too limited for you taste, you might want to check out some hacker friendly SDRs with a little more punch.

Hackaday Links: February 2, 2014

hackaday-links-chain

[Michel] was in need of a 9V battery connector, and in a brilliant bit of insight realized 9V batteries will plug directly into other 9V batteries (just… don’t do that. ever.) Taking a dead 9V, he tore it open, was disappointed by the lack of AAAA cells, and soldered some wires onto the connector.

Sometimes a project starts off as a reasonable endeavour, but quickly becomes something much more awesome. [Wallyman] started off building a hammock stand and ended up making a giant slingshot. We’re not one to argue with something that just became a million times more fun.

We’ve seen solder stencils made out of laser-cut metal, photoetched metal, plastic cut on a vinyl cutter, laser-cut plastic, and now finally one made on a 3D printer. It’s a pretty simple process – get the tCream layer into a .DXF file, then subtract it from a plastic plate in OpenSCAD.

Apple loves their proprietary screws, and when [Jim] tried to open his Macbook Air with the pentalobe screwdriver that came with an iPhone repair kit, he found it was too large. No problem, then: just grind it down. Now if only someone could tell us why a laptop uses smaller screws than a phone…

[Victor] has been playing around with an RTLSDR USB TV tuner dongle for a few months now. It’s a great tool, but the USB thumb drive form factor wasn’t sitting well with him. To fix that, he stuck everything into a classy painted Hammond 1590A enclosure. It looks much cooler, and now [Victor] can waterproof his toy and add a ferrite to clean things up.

Verifying A Wireless Protocol With RTLSDR

rtlsdr_nrf905_rtlizer

[Texane] is developing a system to monitor his garage door from his apartment. Being seven floors apart, running wires between the door and apartment wasn’t an option, so he turned to a wireless solution. Testing this wireless hardware in an apartment is no problem, but testing it in situ is a little more difficult. For that, he turned to software defined radio with an RTLSDR dongle.

The hardware for this project is based around a TI Stellaris board and a PTR8000 radio module. All the code for this project was written from scratch (Github here), making it questionable if the code worked on the first try. To test his code, [Texane] picked up one of those USB TV tuner dongles based around the RTL2832U chipset. This allowed him to monitor the frequencies around 433MHz for the packets his hardware should be sending.

After that, the only thing left to do was to write a frame decoder for his radio module. Luckily, the datasheet for the module made this task easy.

[Texane] has a frame decoder for the NRF905 radio module available in his Git. It’s not quite ready for serious applications, but for testing a simple radio link it’s more than enough.

Transmitting Data With A Pi And RTL-SDR

Sometimes the best builds aren’t anything new, but rather combining two well-developed hacks. [Marc] was familiar with RTL-SDR, the $30 USB TV tuner come software defined radio, but was surprised no one had yet combined this cheap radio dongle with the ability to transmit radio from a Raspberry Pi. [Marc] combined these two builds and came up with the cheapest portable radio modem for the Raspberry Pi.

Turning the Raspi into a transmitter isn’t really that hard; it only requires a 20cm wire inserted into a GPIO pin, then toggling this pin at about 100 MHz. This resulting signal can be picked up fifty meters away, and through walls, even.

[Marc] combined this radio transmitter with minimodem, a program that generates audio modem tones at the required baud rate. Data is encoded in this audio stream, sent over the air, and decoded again with an RTL-SDR dongle.

It’s nothing new, per se, but if you’re looking for a short-range, low-bandwidth wireless connection between a computer and a Raspberry Pi, this is most certainly the easiest and cheapest method.