introduce display muxer
This commit is contained in:
26
src/displayMuxer.h
Normal file
26
src/displayMuxer.h
Normal file
@ -0,0 +1,26 @@
|
||||
/*
|
||||
* displayMuxer.h
|
||||
*
|
||||
* Created on: 05.09.2016
|
||||
* Author: wn
|
||||
*/
|
||||
|
||||
#ifndef DISPLAYMUXER_H_
|
||||
#define DISPLAYMUXER_H_
|
||||
|
||||
#include <stdbool.h>
|
||||
#include <stdint.h>
|
||||
|
||||
typedef enum {
|
||||
FIRST_MUX = 0,
|
||||
TIMER_MUX = FIRST_MUX,
|
||||
TEMPERATURE_MUX,
|
||||
MUX_ENDS
|
||||
} tMuxerSlot;
|
||||
|
||||
void displayMuxerInit(void *handleArg);
|
||||
void displayMuxerExec(void *handleArg);
|
||||
void displayMuxerSetValue(uint8_t value, bool valid, tMuxerSlot slot);
|
||||
|
||||
|
||||
#endif /* DISPLAYMUXER_H_ */
|
Reference in New Issue
Block a user