/*----------------------------------------------------------------*/
/* This file can be saved to your machine (almost) as you see it  */
/* by doing a "Save As..." from the File menu of your browser.    */
/*                                                                */
/* For this to work, you must TYPE a filename with .txt as the    */
/* file extent.  (Simply selecting .txt as the file type          */
/* doesn't seem to be sufficient.)  Remove the .txt extension     */
/* once the file is saved.  (IE inserts the page title as the     */
/* first line, which must be removed also.)                       */
/*----------------------------------------------------------------*/

#ifndef _LCD_H_
#define _LCD_H_

extern void lcdWriteCommand(char commandByte);
extern void lcdGoToXY(char x, char y);
extern void lcdWriteData(char dataByte);
extern void tableToLcd(void);
extern void lcdText(char cvar);
extern void lcdString( const char *s );
extern void lcdDeleteY(char y);
extern void lcdDeleteXY(char x, char y);
extern void lcdCls(void);
extern void lcdPowerUp(void);
extern void lcdPlot(char x,char plot_value8);
extern void lcdLine(char line);
extern short adc_get_adres( void );
extern char _EEPROMRead( char addr );
extern void EEPROMRead( char addr, char size );
extern void _EEPROMWrite( char addr, char data );
extern void EEPROMWrite( char addr, char size );
extern void sleep_mode( void );
extern void pwm1_dc_setup( short dc );
extern void pwm2_dc_setup( short dc );

#endif // _PICCODE_H_