Close

Listening to Noise: Do aliens prefer hex 55?

A project log for LoFi

LoFi is a very low cost ($5), small, auto-transmitting module. Preassembled and preprogrammed. Simply attach to your appliances or projects!

david-cookDavid Cook 06/23/2014 at 22:060 Comments

When all of the transmitters are quiet, the receiver is listening to static on AM 433 MHz (see earlier log post). To avoid interpreting static as valid serial data, LoFi requires a message to start with 10 high bits followed by the letter ‘L’.

Is there a more unlikely-to-randomly-occur value to start a message?

I told LoFi to report all starting bytes 'acceptably' received from dead air for an hour. It produced 4224 samples or about one every second. There were quiet periods and noisy periods. Here is the frequency histogram:

One byte per second is not bad, but it should be less often. Oh! There is a bug in the test program where it records additional bytes after the first.

Before I rerun the tests, let's take a closer look at the distinct values. The lack of bytes with the most-significant bit smells fishy. 0x55 (0b01010101) is the most popular value by far, either because:

Another possibility is electrical noise from nearby equipment. I disconnected LoFi from the Atmel STK500 programming board and sampled again for an hour.

This time, only 36 errant bytes appeared in an hour. Excellent! They all are 0x55, so 'L' (0x4C) is a perfectly fine start for each message. Excellent!

This leads me to two conclusions:

Discussions