| 289 | /*********** mid level commands, for sending data/cmds */ |
| 290 | |
| 291 | inline void LiquidCrystal::command(uint8_t value) { |
| 292 | send(value, LOW); |
| 293 | } |
| 294 | |
| 295 | inline size_t LiquidCrystal::write(uint8_t value) { |
| 296 | send(value, HIGH); |
nothing calls this directly
no outgoing calls
no test coverage detected