4
0
mirror of https://github.com/RT-Thread/rt-thread.git synced 2025-01-25 06:07:34 +08:00

9 lines
111 B
C
Raw Normal View History

#ifndef __LED_H__
#define __LED_H__
void led_init(void);
void led_on(int num);
void led_off(int num);
#endif