![]() |
Linduino
1.3.0
Linear Technology Arduino-Compatible Demonstration Board
|
Go to the source code of this file.
Data Structures | |
| class | LCDKeypad |
Macros | |
| #define | KEYPAD_NONE -1 |
| #define | KEYPAD_RIGHT 0 |
| #define | KEYPAD_UP 1 |
| #define | KEYPAD_DOWN 2 |
| #define | KEYPAD_LEFT 3 |
| #define | KEYPAD_SELECT 4 |
| #define | WRITE_DEGREE_C() |
| Macros used to print simultaneously on LCD and serial port. More... | |
| #define | CLEAR_SCREEN() |
| clear screen More... | |
| #define | NEWLINE() { if (lcd->foundLCD) lcd->setCursor(0, 1); if (lcd->EnableSerialOutput) Serial.println(); } |
| print newline More... | |
| #define | PRINTSCREEN(A) { if (lcd->foundLCD) lcd->print(A); if (lcd->EnableSerialOutput) Serial.print(A); } |
| print value / text More... | |
| #define | PRINTSCREEN2(A, B) { if (lcd->foundLCD) lcd->print(A,B); if (lcd->EnableSerialOutput) Serial.print(A,B); } |
| print formatted value More... | |
| #define | SCREENSETCURSOR(A, B) { if (lcd->foundLCD) lcd->setCursor(A,B); if (lcd->EnableSerialOutput) Serial.print(' '); } |
| move cursor More... | |
| #define CLEAR_SCREEN | ( | ) |
clear screen
Definition at line 30 of file LCDKeypad.h.
| #define KEYPAD_DOWN 2 |
Definition at line 13 of file LCDKeypad.h.
| #define KEYPAD_LEFT 3 |
Definition at line 14 of file LCDKeypad.h.
| #define KEYPAD_NONE -1 |
Definition at line 10 of file LCDKeypad.h.
| #define KEYPAD_RIGHT 0 |
Definition at line 11 of file LCDKeypad.h.
| #define KEYPAD_SELECT 4 |
Definition at line 15 of file LCDKeypad.h.
| #define KEYPAD_UP 1 |
Definition at line 12 of file LCDKeypad.h.
| #define NEWLINE | ( | ) | { if (lcd->foundLCD) lcd->setCursor(0, 1); if (lcd->EnableSerialOutput) Serial.println(); } |
print newline
Definition at line 36 of file LCDKeypad.h.
| #define PRINTSCREEN | ( | A | ) | { if (lcd->foundLCD) lcd->print(A); if (lcd->EnableSerialOutput) Serial.print(A); } |
print value / text
| A | value / text to be written |
Definition at line 39 of file LCDKeypad.h.
| #define PRINTSCREEN2 | ( | A, | |
| B | |||
| ) | { if (lcd->foundLCD) lcd->print(A,B); if (lcd->EnableSerialOutput) Serial.print(A,B); } |
print formatted value
| A | value |
| B | formatting argument |
Definition at line 43 of file LCDKeypad.h.
| #define WRITE_DEGREE_C | ( | ) |
Macros used to print simultaneously on LCD and serial port.
writes degree C sign
Definition at line 26 of file LCDKeypad.h.