Rev 10 |
Blame |
Compare with Previous |
Last modification |
View Log
| Download
| RSS feed
/*
* display.h
*
* Created on: 30 Nov 2020
* Author: mike
*/
#pragma once
#define MAX_DISPLAYS 1
#if defined __cplusplus
extern "C"
{
#endif
extern void cc_init();
extern int cc_display(int dialIndex);
extern void cc_feed(uint32_t pressVal, int32_t tempVal);
extern void cc_feed_pushbutton(uint8_t buttonVal);
#if defined __cplusplus
}
#endif