0% found this document useful (0 votes)
135 views1 page

Led H

This C header file defines functions for initializing and controlling an LED. It includes configuration and type definition headers and declares three functions - InitLED to initialize the LED, TurnOnLED to turn the LED on, and TurnOffLED to turn the LED off.

Uploaded by

api-272643960
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as RTF, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
135 views1 page

Led H

This C header file defines functions for initializing and controlling an LED. It includes configuration and type definition headers and declares three functions - InitLED to initialize the LED, TurnOnLED to turn the LED on, and TurnOffLED to turn the LED off.

Uploaded by

api-272643960
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as RTF, PDF, TXT or read online on Scribd
You are on page 1/ 1

#ifndef LED_H

#define LED_H
#include "ES_Configure.h"
#include "ES_Types.h"
#include "ES_Events.h"
// Public Function Prototypes
void InitLED(void);
void TurnOnLED(void);
void TurnOffLED(void);
#endif /* LED_H */

You might also like