Spyke

Posts

3dprinting·3DPrintingbyLazaroFilm

Kipper - Home printer only if needed

Homing your printer systematically before a print is redundant, a waste of time and sometimes even an issue (if your homing probe is misbehaving and you’ve already dialed an offset by need to restart the print for a clean first layer for instance) I recently came upon this G28 macro that only homes of the printed is not already homed.

[gcode_macro G28]
# Only home if needed.
rename_existing: G28.1
gcode:
    {% if PA %}
        G28.1 {PA}
    {% else %}
        {% if printer.toolhead.homed_axes != "xyz" %}
            G28.1
        {% endif %}
    {% endif %}

All you have to do is add this to your macro.cfg file and it will override any G28 command from any gcode and only execute a home if needed. If you want to execute a home even if not needed, you can send the command G28.1 or give it a parameter, like G28 X, or G28 XYZ and it will force the homing

View original on lemmy.world
wordpress·WordPressbyLazaroFilm

What is the cheapest woocommerce hosting?

I want to make an online store but don’t want to pay $$$$ for Shopify. I looked into woocommerce and it looks exactly like what I want but hosting companies seem to charge extra for woocommerce options. I have deployed my own Wordpress in the past and know enough about front and back end to work things out on my own. Can I just get one of the standard Wordpress option and install woocommerce on it or does it need something extra in the backend that justifies the extra cost?

Also who do you recommend that is cheap and still fairly reliable. It’s a small shop for handmade customized items.

View original on lemmy.world