#include "Max_LCD.h"#include "Max3421e.h"#include <stdio.h>#include <string.h>#include <inttypes.h>#include "WProgram.h"
Go to the source code of this file.
| Defines | |
| #define | CLR_E lcdPins &= ~E | 
| #define | CLR_RS lcdPins &= ~RS | 
| #define | E 0x08 | 
| #define | LCD_sendchar(a) | 
| #define | LCD_sendcmd(a) | 
| #define | RS 0x04 | 
| #define | SENDlcdPins() MAX3421E::gpioWr( lcdPins ) | 
| #define | SET_E lcdPins |= E | 
| #define | SET_RS lcdPins |= RS | 
| Variables | |
| static byte | lcdPins | 
Definition at line 66 of file Max_LCD.cpp.
Definition at line 64 of file Max_LCD.cpp.
| #define E 0x08 | 
Definition at line 61 of file Max_LCD.cpp.
| #define LCD_sendchar | ( | a | ) | 
{   SET_RS;             \
                            sendbyte(a);    \
                        }
Definition at line 74 of file Max_LCD.cpp.
| #define LCD_sendcmd | ( | a | ) | 
{   CLR_RS;             \
                            sendbyte(a);    \
                        }
Definition at line 70 of file Max_LCD.cpp.
| #define RS 0x04 | 
Definition at line 60 of file Max_LCD.cpp.
| #define SENDlcdPins | ( | ) | MAX3421E::gpioWr( lcdPins ) | 
Definition at line 68 of file Max_LCD.cpp.
Definition at line 65 of file Max_LCD.cpp.
Definition at line 63 of file Max_LCD.cpp.
| byte lcdPins  [static] | 
Definition at line 78 of file Max_LCD.cpp.