14 lines
252 B
C
14 lines
252 B
C
#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_
|