diff --git a/src/LedController/LedController.c b/src/LedController/LedController.c index f4e1146..5a83584 100644 --- a/src/LedController/LedController.c +++ b/src/LedController/LedController.c @@ -33,7 +33,7 @@ LedByte LedController_New(uint8_t *port) return led_byte; } -void LedController_ShowByte(LedByte *led_byte) +void LedController_ShowByte(LedByte *led_byte, uint8_t byte) { } diff --git a/src/LedController/LedController.h b/src/LedController/LedController.h index 0db8b42..b9757f9 100644 --- a/src/LedController/LedController.h +++ b/src/LedController/LedController.h @@ -26,7 +26,7 @@ typedef struct Led typedef struct LedByte { Led leds[8]; -} LedByte; +}LedByte; /** * Returns a instance of the LedByte structure. @@ -36,7 +36,8 @@ LedByte LedController_New(uint8_t *port); /** * Displays the byte of data via led pins. */ -void LedController_ShowByte(LedByte *led_byte); +void LedController_ShowByte(LedByte *led_byte, uint8_t byte); + /** * Clears out the byte led representation