LCD1602 com o minimo de arquivos necessarios

Dependencies:   mbed

LCD_1602.h

Committer:
Marcelocostanzo
Date:
2020-11-26
Revision:
0:12860941a8a1

File content as of revision 0:12860941a8a1:

#include "mbed.h"
#ifndef LCD_1602_H
#define LCD_1602_H

void lcd_init (void);   // initialize lcd

void lcd_send_cmd (char cmd);  // send command to the lcd

void lcd_send_char (char data);  // send data to the lcd

void lcd_send_string (char *str);  // send string to the lcd

void lcd_put_cur(int row, int col);  // put cursor at the entered position row (0 or 1), col (0-15);

void lcd_clear (void);

void lcd_cursor_mode(char cursor, char blink);

#endif