burntcoinpurse

Results 17 comments of burntcoinpurse

You can set a gcode command in octoprint to initiate on the serial connection. If that helps.

Check my macro on comment https://github.com/julianschill/klipper-led_effect/issues/61 I have it working on my printer. Bed and hot end both light up separately, and transition from blue to red as they reach...

You can try to add SAVE_GCODE_STATE NAME="a name" Your gcode macros, then RESTORE_GCODE_STATE NAME="a name" That tends to help mine. Also if you have any on a delay, then you...

You can try adding your gcode command here, in your probe settings. [probe] #deactivate_gcode: # A list of G-Code commands to execute after each probe attempt # completes. See docs/Command_Templates.md...

I'll write it out for you in a few hours when I'm home. Work....ya know.

Can you post you neopixel stuff too? It'll make it easier.

You got it working?

You're going to need to set up a display_template for the macro. Give each effect its own display_template. Then use the macro to run the template.

activate_gcode: [gcode_macro KLICKY] gcode: SET_LED_EFFECT EFFECT="your effect" deactivate_gcode: [gcode_macro KLICKY_OFF] gcode: SET_LED_EFFECT EFFECT="your effect" STOP=1 add this to [probe] in printer.cfg to start an effect as soon as the probe...

I have that issue when 2 or more effects are fighting for the same pixels. You got to make sure to clear out effects before starting a new ones, also...