We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I tried Screen.autoscroll() with MicroPython 1.17 on NUCLEO-L476RG board, and Grove 16x2 LCD RGB backlight v4.0 It does not work.
Here is my fix :
def autoscroll(self, state): if state: # self.disp_ctrl |= self.LCD_ENTRYSHIFTINCREMENT # self.cmd(self.LCD_DISPLAYCONTROL | self.disp_ctrl) self.disp_mode |= self.LCD_ENTRYSHIFTINCREMENT self.cmd(self.LCD_ENTRYMODESET | self.disp_mode) else: # self.disp_ctrl &= ~self.LCD_ENTRYSHIFTINCREMENT # self.cmd(self.LCD_DISPLAYCONTROL | self.disp_ctrl) self.disp_mode &= ~self.LCD_ENTRYSHIFTINCREMENT self.cmd(self.LCD_ENTRYMODESET | self.disp_mode)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I tried Screen.autoscroll() with MicroPython 1.17 on NUCLEO-L476RG board,
and Grove 16x2 LCD RGB backlight v4.0
It does not work.
Here is my fix :
The text was updated successfully, but these errors were encountered: