For those interested in SDR, there was recently a discussion here on signals identification [1], and some months ago a discussion of NXP's new LA9310 ADC chip for radio applications [2]: [1] https://news.ycombinator.com/item?id=37869534 [2] https://news.ycombinator.com/item?id=35325165
WebSDR – Internet-connected Software-Defined Radios
51–60 of 67 posts
Re: WebSDR – Internet-connected Software-Defined Radios
#52Is there any good open source software for WebSDR? I am living in a very noisy area from RF standpoint, but my parents are living in a better position. So I was thinking to install a SDR and a Raspberry and use them as remote SDR
If you don't need the web interface and your usual desktop SDR software supports rtl-sdr tcp mode, you can easily set up a small board that calls rtl-sdr with the appropriate parameters so that it will wait for a remote connection from the above software, not unlike what happens with WebSDR, but you would be using your usual desktop SDR application which would be native and much more snappy than a web browser. Here's…
Re: WebSDR – Internet-connected Software-Defined Radios
#53This is a cool project. I bought both a HackRF and an Ettus USRP B210 years ago for playing with. I am yet to actually do anything of interest! Anyone want to share anything cool they’ve done in the SDR world?
Unlike a traditional scanner which only monitors one frequency at a time, if two things are happening simultaneously then you hear them both. This would be annoying or unlistenable in a busier area, but in my area it works fine.
Re: WebSDR – Internet-connected Software-Defined Radios
#54I’d love to decode some radio signals - just to go through the “motions” and try my hand at it. Is something like an AM radio signal decoding relatively easy to understand? What about FM? And NTSC? Is the python code clear-ish? Complicated? Full of math I’m not appreciating? Thanks! Ok… it’s not exactly trivial: https://pysdr.org/content/rds.html#fm-demodulation
Re: WebSDR – Internet-connected Software-Defined Radios
#55University of Twente in the Netherlands has a great websdr[1] running some custom hardware that can tune into pretty much the entire shortwave spectrum. I've spent countless hours tuning in to various European radio stations and broadcasts (you can even pick up the odd number station if you are on the right frequency and get lucky with timing). [1] http://etgd1.ewi.utwente.nl:8901/
Re: WebSDR – Internet-connected Software-Defined Radios
#56Earlier quoted context omitted.
> but you need to hunt down EMI sources, before you can properly use it. Do you have any recommendations for doing this? I have some source that interferes every 11 seconds for a second or so. It causes packet loss with my wifi (2.5 and 5GHz), and makes my bluetooth game controllers really frustrating to use, since input are missed every time it does it. I assume it's in the microwave range. I'm familiar with RF test…
You could get an rtlsdr dongle cheap and use it as a spectrum analyzer. There are command line utilities for that task in with the drivers online.
Re: WebSDR – Internet-connected Software-Defined Radios
#57Earlier quoted context omitted.
You could get an rtlsdr dongle cheap and use it as a spectrum analyzer. There are command line utilities for that task in with the drivers online.
they don't go up to the 2.4/5Ghz range though, they max out at about 1.7
Re: WebSDR – Internet-connected Software-Defined Radios
#58University of Twente in the Netherlands has a great websdr[1] running some custom hardware that can tune into pretty much the entire shortwave spectrum. I've spent countless hours tuning in to various European radio stations and broadcasts (you can even pick up the odd number station if you are on the right frequency and get lucky with timing). [1] http://etgd1.ewi.utwente.nl:8901/
Skyking is a military radio transmission protocol, believed to be command-and-control in nature. Some believe there to be a correlation between the length of the encoded message/how many times the operator says “Skyking” and the DEFCON level/how close the US is to blowing shit up.
Re: WebSDR – Internet-connected Software-Defined Radios
#59I’d love to decode some radio signals - just to go through the “motions” and try my hand at it. Is something like an AM radio signal decoding relatively easy to understand? What about FM? And NTSC? Is the python code clear-ish? Complicated? Full of math I’m not appreciating? Thanks! Ok… it’s not exactly trivial: https://pysdr.org/content/rds.html#fm-demodulation
FM is built on a simple idea, but it has more involved maths.
Analog television signals are way more complex IIRC.
Re: the lib you linked - libs used to deal with radio signals is made by people who have studied signal processing and comm systems formally so you will see lots of jargon and advanced maths like Fourier Analysis. However, you most likely can build something shittier yet working by yourself by understanding the fundamentals of how those signals are encoded, modulated and transmitted.