You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#ifndef LED_H
|
|
#define LED_H
|
|
|
|
/** Turn LED1 on. */
|
|
void led_on (void);
|
|
|
|
|
|
/** Turn LED1 off. */
|
|
void led_off (void);
|
|
|
|
|
|
/** Initialise LED1. */
|
|
void led_init (void);
|
|
#endif
|