Joel Pallent / Mbed 2 deprecated Muscle_Controlled_Servo

Dependencies:   mbed

Fork of Muscle_Controlled_Servo by Ben Gordon

LCD.h

Committer:
BenRJG
Date:
2018-04-05
Revision:
5:11489c0bd020
Parent:
4:bcef9164776e
Child:
8:462ce856429b

File content as of revision 5:11489c0bd020:

#ifndef _LCD_H_
#define _LCD_H_
    //////Included Files//////
    #include "SPI.h"
    //////////////////////////
    
    ///////Definitions////////
    
    //////////////////////////
    
    ////////Functions/////////
    void LCD_INIT(void);
    
    int32_t bar_graph(uint8_t level);   //Display a bar graph on the lcd 2nd line scale 0 to 15
    
    int32_t lcd_cls(void);              //LCD Functions here, Clear Screen, Locate and Display String
    int32_t lcd_locate(uint8_t line, uint8_t column); //Line Max is 2, Column max is 16
    int32_t lcd_display(char* str);     //String str length maximum is 16
    //////////////////////////
#endif