Success: Robot36 encoder works…

July 23, 2009 | Amateur Radio | By: Mark VandeWettering

Picture 1

Well, it works! Using the information in the paper I linked earlier in the day, I spent some time and managed to code up a Robot36 SSTV encoder. Above, you see the image decoded by Multiscan on my Macbook. Here’s a link to the .wav file:

Comment from Brad
Time 1/22/2011 at 12:24 am

Cool stuff, I’m looking to build an AVR-based board to do SSTV (or maybe one of those cheap STM32 boards). BTW, your download link is broken.

Comment from Bernard
Time 3/4/2011 at 10:22 am

Hello Mark,

That’s a great experiment, I would like to try it. Can you send me the robot36.c file? The link is broken on your site. Thank you! Have you done further experiments with SSTV on arduino?

Bernard Van Haecke KI6TSF
bernard.vanhaecke@gmail.com

Comment from Greg Nawrocki KC9SFG
Time 5/31/2011 at 6:55 pm

Mark,

I’m using a serial camera and an arduino to pipe image data over a VHF radio, all non-standard. I’d like to give your code a try because SSTV would let others get in on the image receiving fun.

Thanks,

— Greg

Comment from Guy – W6MSU
Time 5/31/2011 at 8:11 pm

(Howdy,)

Here’s what I got with windows re-sample (to 11025) and the ham program “MultiPSK”…

http://www.flickr.com/photos/w6msu/5784228481/in/photostream/lightbox/

FB

73,
Guy – W6MSU

Pingback from Balise WSPR autonome avec Arduino chez W3PM | Les chroniques hertziennes par XV4Y
Time 3/19/2012 at 7:03 pm

[…] chose, voici k6HX qui a construit une balise SSTV à partir d’un Arduino. Bon, en fait il génère un fichier son (WAV) sur PC et l’Arduino en déclenche la lecture […]

Comment from Natthapong
Time 7/12/2012 at 10:58 pm

Hi,

I found your website and it very useful for my project. Thank you very much for this resource.

I have some problem to ask If you can help, I found that time in image scan line is shorter time than real audio frequency such as .25 ms or 250 us per pixel, How to modulate audio 1500hz in .25ms ? 1 cycle of 1500 hz need 666.6 us or 0.6666 ms.

Thank you in advance if you can help explain me this question.

Greeting,

Comment from Mark VandeWettering
Time 7/13/2012 at 11:50 am

I’m not 100% certain I understand your question. The scanline time for robot36 is 88ms for the Y data. There are nominally 320 pixels per scanline, which means that each pixel takes up only .275ms. As you pointed out, this is not a full cycle of 1500Hz (it won’t be a full cycle of any frequency less than 3.6Khz), but we don’t _have_ to output a full cycle. The code in ScanlinePair just makes sure we end up with the right number of samples, and makes sure (in a fairly crude and unoptimal way) that each pixel in the image makes a contribution to some samples in the output. The result isn’t easy to explain without more math and signal processing than I feel comfortable with, particularly in a comment, but it works out fine for slowly varying signals, but has more difficulty with lots of high frequency changes. A more detailed analysis of the mode would be fun to do. I might give it a try sometime.

One way to think about the demodulator is to imagine that you are looking at a window of samples around your sampling time. The question you want to answer is “what frequency do I think he was trying to emit _at this moment_?” If your window is wide (you have lots of samples) and you have a very slowly varying (or constant) signal, you can probably do a really good job. But the signal is varying slowly, so the signal doesn’t provide a lot of resolution. If you kept that wide window, you’d have information from other nearby pixels. In most realistic images, the values nearby are fairly correlated with the pixel you are looking at, but as they get further and further away, the information you gain is less and less useful. At a certain point, you don’t get any extra use from having those extra samples.

You can actually make a demodulator which attempts to just look at windows that contain two samples. (You can think of this as taking your complex input signal, and solve for the angle that rotates the first one to the next, accumulating the frequency). In fact, my first demodulators did precisely this. The result can be noisy and can alias, but it works surprisingly well. In each case, you are estimating the frequency just on the basis of two adjacent samples. Not ideal, but it works…

Comment from Natthapong
Time 8/30/2012 at 9:52 pm

Thank you very much for your explaination !

Comment from WS4E
Time 6/5/2013 at 7:00 pm

Where did the robot36.c code go? I would love to use this as starting place for a field day project.

Comment from Mark VandeWettering
Time 6/6/2013 at 8:35 am

Oops. Something broke here. I’ll try to get it back and relink it again. Stay tuned!

Comment from Mark VandeWettering
Time 6/6/2013 at 10:02 am

Okay, I added a fancy embedded plugin thing above, where you can view and download the code. If you are a programmer and know how to use “git”, then: “git clone https://gist.github.com/5723053.git” will grab the code automatically.