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

View File

@ -22,6 +22,8 @@
#include "blinky.h"
#include "pwm.h"
#include "counter.h"
#include "led.h"
void my_setup_1() {
@ -44,6 +46,11 @@ void my_errorHandler() {
void my_setup_2() {
blinkyInit();
pwmInit();
counterInit();
ledInit();
ledGreenOff();
ledRedBlink();
}