20 lines
277 B
C
20 lines
277 B
C
/*
|
|
* display.h
|
|
*
|
|
* Created on: 29.08.2016
|
|
* Author: wn
|
|
*/
|
|
|
|
#ifndef DISPLAY_H_
|
|
#define DISPLAY_H_
|
|
|
|
|
|
extern const uint32_t DISPLAY_CYCLE;
|
|
|
|
void displayInit(void *handleArg);
|
|
void displayExec(void *handleArg);
|
|
void displaySetValue(uint8_t v);
|
|
|
|
|
|
#endif /* DISPLAY_H_ */
|