2020-11-03 10:05:45 +01:00
|
|
|
#ifndef _SHOW_H_
|
|
|
|
#define _SHOW_H_
|
2020-11-01 22:21:48 +01:00
|
|
|
|
|
|
|
|
|
|
|
#include <stdint.h>
|
|
|
|
|
|
|
|
typedef enum { DEBUG_1, DEBUG_2, LED_RED, LED_GREEN } signalPin_t;
|
|
|
|
typedef enum { ON, OFF, TOGGLE } signalAction_t;
|
|
|
|
|
2020-11-03 10:05:45 +01:00
|
|
|
void show(signalPin_t signalPin, signalAction_t action);
|
2020-11-01 22:21:48 +01:00
|
|
|
|
|
|
|
|
2020-11-03 10:05:45 +01:00
|
|
|
#endif // _SHOW_H_
|