| 164 | } |
| 165 | |
| 166 | void LiquidCrystal_I2C::home() { |
| 167 | command(LCD_RETURNHOME); // set cursor position to zero |
| 168 | delayMicroseconds(2000); // this command takes a long time! |
| 169 | } |
| 170 | |
| 171 | void LiquidCrystal_I2C::setCursor(uint8_t col, uint8_t row) { |
| 172 | int row_offsets[] = { 0x00, 0x40, 0x14, 0x54 }; |
nothing calls this directly
no outgoing calls
no test coverage detected