Issue in oledExp Python Module
-
I am not getting new line character working python module?
The following still displays text on single line of OLED display expansion (with \n characters removed)
Was looking at source and only thing i can figure is that you are not getting right value for the total number of characters in the row when you go to print spaces?
Actually while writing this i found the problem in oled-exp.h
OLED_EXP_CHAR_COLUMNS
OLED_EXP_CHAR_COLUMNI'll submit issue on github
from OmegaExpansion import oledExp msg = "test\nFrom\n\n\nPython" status = oledExp.driverInit() oledExp.clear() oledExp.write(msg)