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
14typedef enum {
15 eLCD1602_ok,
16 eLCD1602_invalidLine
17} lcd1602_res_t;
18
19lcd1602_res_t lcd1602_init(void);
20lcd1602_res_t lcd1602_write(uint16_t lines, char* text);
21lcd1602_res_t lcd1602_clear(void);
22lcd1602_res_t lcd1602_backlight(bool on);
23bool lcd1602_getBacklightState(void);
24
25
26#endif /* LCD1602_H_ */