Files @ 96a7529926a0
Branch filter:

Location: seniordesign-firmware/slave/slave/lib/led.c - annotation

kripperger@CL-SEC241-09.cedarville.edu
i2c library work.
/*
 * led.c
 *
 * Created: 10/25/2012 10:03:22 PM
 *  Author: mkanning
 */

 #include <avr/io.h>
 #include "led.h"

 void led_configure()
 {
	 // 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
	 
 }