rename signal to show

This commit is contained in:
2020-11-03 10:05:45 +01:00
parent 92d31980c8
commit 83c6d65172
8 changed files with 21 additions and 21 deletions

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

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