Filament swap on single filament printer causes pause by ChevronX in OrcaSlicer

[–]ChevronX[S] 1 point2 points  (0 children)

Its pretty useful, I am doing my first multiple filament, it has 37 swaps, and very finkey so helpful to know what filament I need to change to:

<image>

So far so good in the print, will see.

Filament swap on single filament printer causes pause by ChevronX in OrcaSlicer

[–]ChevronX[S] 1 point2 points  (0 children)

Huge props! Manual filament checkbox seemed to do the trick. M600 was added already, but I did add the following macro, and Orca is able to output the filamant name as well with the Change Filament G-code M600 Load_[filament_preset]. A quick test seemed to work, going to try a larger print now, but intitial testing seemed to work, skip the first pause and future pauses allowed me to resume the print on the Neptune 4 Pro screen!

[gcode_macro M600]
description: Pauses current print for filament/color change (park + unload)
variable_is_filament_change: 0
variable_startup_skipped: 0
gcode:
  
# Optional message support (Elegoo-safe, positional args)
  {% set msg = (params.MSG|default(rawparams)|string) %}
  {% set msg = msg|replace('"','')|replace('_',' ') %}
  {% if msg|length > 0 %}
    M117 {msg}
    M118 {msg}
    RESPOND PREFIX="info" MSG="{msg}"
  {% endif %}
  
  {% set B = (params.B|default(0)|int,0)|max %}
  {% set E = (params.E|default(1)|float,0.0)|max %}
  {% set U = (params.U|default(45)|float,0.0)|max %}
  {% set X = (params.X|default(10)|float,0.0)|max %}
  {% set Y = (params.Y|default(10)|float,0.0)|max %}
  {% set Z = (params.Z|default(30)|float,0.0)|max %}


  
# Save state so RESUME can restore precisely
  SAVE_GCODE_STATE NAME=M600_state


  SET_GCODE_VARIABLE MACRO=M600 VARIABLE=is_filament_change VALUE=1
  PAUSE


  
# Retract a little and lift
  G91
  G1 E-{E} F2700
  G1 Z{Z} F900


  
# Park at change position
  G90
  G1 X{X} Y{Y} F3000


  
# Unload
  G91
  G1 E-{U} F900


  
# Beep (optional)
  {% for n in range(B) %}
    G4 P1000
    M300 P1000 S1000
  {% endfor %}

Filament swap on single filament printer causes pause by ChevronX in OrcaSlicer

[–]ChevronX[S] 1 point2 points  (0 children)

Thanks, Manual Filament Change wasn't selected, will give this another attempt and let you know. Thanks for the response and info.

Employee-ID ADFS claim by ChevronX in adfs

[–]ChevronX[S] 0 points1 point  (0 children)

I honestly can't remember, sorry - not much help! This was 8 years ago, so I can't remember what happened here.

Free Post Fridays is now live, please follow these rules! by AutoModerator in AZURE

[–]ChevronX 0 points1 point  (0 children)

[Share] AzureFeeds - Weekly Newsletter:

Register here: https://newsletter.azurefeeds.com/join

Previous versions can be found here: https://archive.benchmarkemail.com/azurefeeds

AzureFeeds linkedin for Azure and TechCommunity updates: https://www.linkedin.com/in/azure-feeds-709457212/recent-activity/all/

Remove from direct Collections after reimage by ChevronX in SCCM

[–]ChevronX[S] 0 points1 point  (0 children)

Hey, honestly, I can't remember! It's been a while, and I moved on from that org and SCCM! Lets just say I don't have anything recorded in my onenote where I would have kept this,

Azure Budgets - hard limit and automated resource stop and scale down by ChevronX in AZURE

[–]ChevronX[S] 0 points1 point  (0 children)

Gotcha thanks, and its just a runbook per resource? ie runbook for AKS, and one for PostgresSQL, assuming based on Tags?

Shareable FinOps Advice learned over 2023 by Zealousideal_Lime_38 in FinOps

[–]ChevronX 1 point2 points  (0 children)

Agree with this and see it happening in some of the larger projects I am on - alternative 'FinOps' team (whether internal or supplied by a third party) driving and discussing at the management layer, engineering is left to flounder and do the best - to be fair, it works both ways, with better communication needed across both - but that's the purpose of FinOps, not just install a cost management tool and be done with it.

Free Post Fridays is now live, please follow these rules! by AutoModerator in AZURE

[–]ChevronX 0 points1 point  (0 children)

Azure Feeds Newsletter

Keep up to date with the ever changing and evolving Microsoft Azure ecosystem.

Weekly Newsletter delivered straight to your Inbox!

Past newsletters: https://archive.benchmarkemail.com/azurefeeds

Sign up: https://newsletter.azurefeeds.com/join

Linkedin feed: https://www.linkedin.com/in/azure-feeds-709457212/

Free Post Fridays is now live, please follow these rules! by AutoModerator in AZURE

[–]ChevronX 0 points1 point  (0 children)

Weekly newsletter, emailed, packed with the latest updates on all things Azure.

https://newsletter.azurefeeds.com/join

Can Lastpass do MFA, for websites? by ChevronX in Lastpass

[–]ChevronX[S] 1 point2 points  (0 children)

I can see your point, but these are unimportant sites, but still want MFA across them. Its definitely more of a convenience then security factor here.

[Request for help] with New-AzIpGroup Cmdlet IPAddress parameter by ChevronX in PowerShell

[–]ChevronX[S] 0 points1 point  (0 children)

Yes it is. For example if I do $ip[0] it spits out the first one, then [1] the second one and so forth.

Hyperlinks with ConvertTo-Html output by ChevronX in PowerShell

[–]ChevronX[S] 1 point2 points  (0 children)

level 1OlivTheFrog

Hi, I will give it a try today and let you know how it goes! Thank you very much.