This commit is contained in:
2021-01-09 22:01:21 +01:00
commit 4b3e3a3710
38 changed files with 3231 additions and 0 deletions

20
cube/User/Inc/show.h Normal file
View File

@ -0,0 +1,20 @@
#ifndef _SHOW_H_
#define _SHOW_H_
#include <stdint.h>
typedef enum {
DEBUG_1 = 0,
DEBUG_2 = 1,
LED_RED = 2,
LED_GREEN = 3
} signalPin_t;
typedef enum { ON, OFF, TOGGLE, BLINK } signalAction_t;
void showInit();
void show(signalPin_t signalPin, signalAction_t action);
#endif // _SHOW_H_