-
Notifications
You must be signed in to change notification settings - Fork 0
/
graphics.h
39 lines (32 loc) · 1.74 KB
/
graphics.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
/***********************************************************************************************//**
* \file graphics.h
* \brief Displays text on the LCD
***************************************************************************************************
* <b> (C) Copyright 2015 Silicon Labs, http://www.silabs.com</b>
***************************************************************************************************
* This file is licensed under the Silabs License Agreement. See the file
* "Silabs_License_Agreement.txt" for details. Before using this software for
* any purpose, you must agree to the terms of that agreement.
**************************************************************************************************/
#ifndef GRAPHICS_H
#define GRAPHICS_H
#ifdef __cplusplus
extern "C" {
#endif
/***************************************************************************************************
Public Function Declarations
***************************************************************************************************/
/***********************************************************************************************//**
* \brief Initializes the graphics stack
* \param[in] header Header Text on display
**************************************************************************************************/
void graphInit(const char* header);
/***********************************************************************************************//**
* \brief display a string on the LCD center aligned
* \param[in] string String to be displayed
**************************************************************************************************/
void graphWriteString(const char *string);
#ifdef __cplusplus
}
#endif
#endif /* GRAHPHICS_H */