led control

This commit is contained in:
Wolfgang Hottgenroth
2018-01-18 15:06:37 +01:00
parent 4ee20b974a
commit 36ce69de93
100 changed files with 8151 additions and 8695 deletions

23
my_src/led.h Normal file
View File

@ -0,0 +1,23 @@
/*
* led.h
*
* Created on: Jan 18, 2018
* Author: wn
*/
#ifndef LED_H_
#define LED_H_
void ledInit();
void ledGreenOn();
void ledGreenOff();
void ledGreenBlink();
void ledRedOn();
void ledRedOff();
void ledRedBlink();
#endif /* LED_H_ */