Subversion Repositories HomeAutomation

Rev

Rev 140 | Blame | Compare with Previous | Last modification | View Log | SVN | RSS feed

  1. /*********************************************************************
  2.  *
  3.  *                  LCD header file
  4.  *
  5.  *********************************************************************
  6.  * FileName:        $HeadURL: https://svn.auml.se/svn/HomeAutomation/branches/hwid/EmbeddedSoftware/PIC/canLCD/Include/lcd.h $
  7.  * Last changed:    $LastChangedDate: 2006-11-21 10:28:39 +0100 (Tue, 21 Nov 2006) $
  8.  * By:              $LastChangedBy: johboh $
  9.  * Revision:        $Revision: 140 $
  10.  ********************************************************************/
  11.  
  12.  
  13. #ifndef __LCD_H
  14. #define __LCD_H
  15.  
  16. #include <compiler.h>
  17. #include <delays.h>
  18. #include <stackTasks.h>
  19. #include <typedefs.h>
  20.  
  21. void lcdClear(void);
  22. void lcdPuts(char * s);
  23. void lcdPutrs(const rom char *s);
  24. void lcdPutc(char c);
  25. void lcdGoto(BYTE pos);
  26. void lcdInit(void);
  27.  
  28. #endif // __LCD_H
  29.