(self, cmd, RS=0)
| 35 | |
| 36 | # write a command to lcd |
| 37 | def lcd_write(self, cmd, RS=0): |
| 38 | self.lcd_write_four_bits(RS | (cmd & 0xF0)) |
| 39 | self.lcd_write_four_bits(RS | ((cmd << 4) & 0xF0)) |
| 40 | |
| 41 | def set_line(self, line, col=0): |
| 42 | if line == 1: |
no test coverage detected