Radar Scanner
1.0.0
Loading...
Searching...
No Matches
C:/Users/Alex/git/repository2/esr24_g10_radar_scanner/lcd1602.h
1
/*
2
* lcd1602.h
3
*
4
* Created on: 14.07.2020
5
* Author: steddins
6
*/
7
8
#ifndef LCD1602_H_
9
#define LCD1602_H_
10
11
#include <stdint.h>
12
#include <stdbool.h>
13
14
typedef
enum
{
15
eLCD1602_ok,
16
eLCD1602_invalidLine
17
} lcd1602_res_t;
18
19
lcd1602_res_t lcd1602_init(
void
);
20
lcd1602_res_t lcd1602_write(uint16_t lines,
char
* text);
21
lcd1602_res_t lcd1602_clear(
void
);
22
lcd1602_res_t lcd1602_backlight(
bool
on);
23
bool
lcd1602_getBacklightState(
void
);
24
25
26
#endif
/* LCD1602_H_ */
Generated by
1.11.0