/*
  init.cpp -- code to initialize Plot package
  				Sets up Serial port at specified baud rate
 */
#include "Plot.h"

// null constructor (putting Serial.begin() here doesn't work...)
Plot::Plot(void)
{
	return;
}

void Plot::init( unsigned long baud )
{
	Serial.begin(baud); 
	return;
}
