This repository has been archived on 2024-03-18. You can view files and clone it, but cannot push or open issues or pull requests.
game-ctrl-01/led.h

16 lines
207 B
C
Raw Normal View History

2024-03-07 15:51:44 +01:00
#ifndef LED_H_
#define LED_H_
void ledBlueOff();
void ledBlueOn();
2024-03-12 18:18:26 +01:00
void ledBlueToggle();
2024-03-07 15:51:44 +01:00
void ledGreenOff();
void ledGreenOn();
2024-03-12 18:18:26 +01:00
void ledGreenToggle();
2024-03-07 15:51:44 +01:00
void ledInit();
void ledExec();
#endif /* LED_H_ */