multiline label



  • I want to display a label with more than one line. With Python I simply add '/r/n' between the lines. Does somebody know how to do that with Blockly?



  • Hi @Kees1949 this should be possible with both lcd.text and label blocks by adding \n to the end of your text string. However there was a small bug whereby the resulting python code would have an extra \ generated. I have informed the development team and there should be a fix for this in the next release. Meanwhile you will just have to manually remove the extra \ on the python page.



  • Hello Lucas, your temporarely solution works for me. Sorry for the typo: '/r/n' should be '\r\n'.
    Thanks.