#!/usr/bin/python

# This test program reads the output of the Marauder Receiver and prints it for debugging.

import serial
ser = serial.Serial("/dev/ttyUSB0", 4800, timeout=2)
while True:
    print ser.readline(),

