The purpose of the Base Station is to display the location of the robot, and the information it collects, as it traverses through the maze. This is recorded on a GUI, which is being run on a computer plugged in over USB.
void setup(){
initialize radio
initialize serial
}
void loop(){
while !radio.available()
wait for radio transmission
receive transmission
decode instruction
update internal Maze object
determine GUI update message and print to serial
}