Files @ 2d1f159689de
Branch filter:

Location: seniordesign-firmware/slave/slave/lib/inputOutput.h

kripperger@CL-SEC241-09.cedarville.edu
Work on the Slave to master communications
/*
 * io.h
 *
 * Created: 11/7/2012 7:18:08 PM
 *  Author: kripperger
 */ 


#ifndef IO_H_
#define IO_H_
 
void io_configure();

void io_readModuleId();	// Reads ID from rotary dip (or EEPROM).
uint8_t io_getModuleId();	// Gets ID and returns it.

void io_heaterOn();
void io_heaterOff();
uint8_t io_heaterStatus();

void io_regulateTemp();		// Gets board temperature and enables heater if below threshold

#endif /* IO_H_ */