/*
* mbariPic.h
*
* Copyright 2010, MBARI
* Author: EJM
* Date: 15DEC2010
*
* 	This code is a set of small library functions to accompany a 
* 	PIC Microcontroller board running the Microchip PIC24FJ64GA002
*
*/


#include <p24FJ64GA002.h>
//#include <p24Fxxxx.h>
//#include <stdio.h>
//#include <string.h>

void ledOn(int ledid);
void ledOff(int ledid);
int  getSwitch(int swid);
void initBoard();


