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
Does anybody know how to add a new Preheat line, e.g. for PETG?
I can see you can change the values for PLA or ABS in code, but would like to add a third.
The main bit I think I'm missing is how characters are created or copied, so for ABS we do:
def Item_Prepare_ABS(self, row): self.lcd.Frame_AreaCopy(1, 107, 76, 156, 86, self.LBLX, self.MBASE(row)) # "Preheat" self.lcd.Frame_AreaCopy(1, 172, 76, 198, 86, self.LBLX + 52, self.MBASE(row)) # "ABS" self.Draw_Menu_Line(row, self.ICON_ABSPreheat)
How do I find out what position (e.g. 172, 76 above for ABS) holds string 'PETG' or if it's just not available?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Does anybody know how to add a new Preheat line, e.g. for PETG?
I can see you can change the values for PLA or ABS in code, but would like to add a third.
The main bit I think I'm missing is how characters are created or copied, so for ABS we do:
How do I find out what position (e.g. 172, 76 above for ABS) holds string 'PETG' or if it's just not available?
The text was updated successfully, but these errors were encountered: