Remco Veldkamp

Results 32 comments of Remco Veldkamp

Do you mean coloring the line segments according to nozzle temp? I could create a method to let you colorize the line segments according to the current state, nozzle temp,...

Maybe you can annotate the GCODE? G1 X2 Y3 E4 ; START HIGHLIGHTED AREA G1 X3 Y4 E5 ; END HIGHLIGHTED AREA G1 X4 Y5 E6 Then the lines between...

Let's take this example: ``` G1 X2 Y3 E4 ; START HIGHLIGHTED AREA G1 X3 Y4 E5 ; END HIGHLIGHTED AREA G1 X4 Y5 E6 ``` To recognize the highlighted...

Setting a class prop on a TabPane just seems to disappear. If you set a class name on TabContent you can do it but you'll also need to create your...

@orangeagain can you provide us with an example gcode file that shows the color change? (preferably not too big) It would help us with inventorizing the different flavors of multi-color...

At a minimum we should support: - M600 (change filament) - T1,T2,....Tx (change tool) Anything else? I can check what gcode Bambulabs produces. For now, let's say out-of-scope are mixing...

OK, I checked the gcode that Bambulabs generates and while they inject quite a lot of gcode to do a filament change, they use T1,T2,T2,T4 to select a color. So...

Created a POC for this feature. https://github.com/remcoder/gcode-preview/tree/poc/multi-color It mostly works but: - supports only T0,T1,T2,T3 tool changes (not even T4, etc) - some tests are failing - no API yet,...

Come to think of it. M600 is actually quite different from color changing in a true multi-color scenario. What I mean is that if the printer can switch colors itself...