-------- Write characters on the display ------------------
| 16 | |
| 17 | //-------- Write characters on the display ------------------ |
| 18 | void writeDisplay() |
| 19 | { |
| 20 | debug_d("%s", __FUNCTION__); |
| 21 | |
| 22 | // NOTE: Cursor Position: (CHAR, LINE) start at 0 |
| 23 | lcd.setCursor(0, 0); |
| 24 | lcd.print(_F("SMING: Let's do")); |
| 25 | lcd.setCursor(0, 1); |
| 26 | lcd.print(_F("smart things!")); |
| 27 | } |
| 28 | |
| 29 | // ------- Quick 3 blinks of backlight ------------- |
| 30 | void flashBacklight() |
no test coverage detected