Write data to the LCD. It is expected that a derived HAL class will implement this function.
(self, data)
| 196 | raise NotImplementedError |
| 197 | |
| 198 | def hal_write_data(self, data): |
| 199 | """Write data to the LCD. |
| 200 | |
| 201 | It is expected that a derived HAL class will implement this |
| 202 | function. |
| 203 | """ |
| 204 | raise NotImplementedError |
| 205 | |
| 206 | # This is a default implementation of hal_sleep_us which is suitable |
| 207 | # for most micropython implementations. For platforms which don't |
no outgoing calls
no test coverage detected