Subversion Repositories testOled

Rev

Rev 10 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
2 mjames 1
/*
2
 * display.h
3
 *
4
 *  Created on: 30 Nov 2020
5
 *      Author: mike
6
 */
7
 
8
#pragma once
9
 
10
#define MAX_DISPLAYS 1
11
#if defined __cplusplus
10 mjames 12
extern "C"
13
{
2 mjames 14
#endif
15
 
10 mjames 16
    extern void cc_init();
2 mjames 17
 
10 mjames 18
    extern int cc_display(int dialIndex);
2 mjames 19
 
10 mjames 20
    extern void cc_feed(uint32_t pressVal, int32_t tempVal);
2 mjames 21
 
11 mjames 22
    extern void cc_feed_pushbutton(uint8_t buttonVal);
23
 
2 mjames 24
#if defined __cplusplus
25
}
26
#endif