Files @ ade367f85575
Branch filter:

Location: seniordesign-firmware/master/master/lib/led.c

kripperger@CL-SEC241-09.cedarville.edu
i2c work
/*
 * led.c
 *
 * Created: 10/25/2012 3:34:03 PM
 *  Author: ethanzonca
 */ 

#include <avr/io.h>

void led_setup() {
	// Configure ports/pins for LEDs
}

void led_On(uint8_t led) {
	// Turn the specified LED on
}

void led_Off(uint8_t led) {
	// Turn the specified LED off
}

void led_Toggle(uint8_t led) {
	// Toggle the specified LED 
}