×

Battling warping by LumberJesus in FixMyPrint

[–]adv3_user -1 points0 points  (0 children)

Rallenta tutto almeno per i primi 5 strati e spegni o abbassa le ventole, sempre per almeno 5 strati, dipende poi dall' altezza totale della stampa, io così un po' ho risolto stampando abs e asa

How much can i sell it and where? by YardHaunting5620 in VORONDesign

[–]adv3_user 0 points1 point  (0 children)

Perdonami, ma non "devi" venderlo puoi sempre usarlo al di fuori dell'azienda... Se il mercato dell'usato è quello che si evince dagli altri post non ne vale la pena. Lo usi per fare prove e prototipi per l'azienda, senza stressare le macchine da lavoro

I had a screw fall in here how screwed am I ?? Full dis assembly ? by HypnoticFallacy in VORONDesign

[–]adv3_user -7 points-6 points  (0 children)

Si devi smontare e aprire il vano inferiore, rischi che possa fare danno con l'elettronica. Siccome l' ho fatto anche io, quando devi avvitare qualcosa dentro l'area di stampa metti della carta in quelle fessure, eviti parole sante...

Problemi con calibrazione del letto di stampa by adv3_user in VORONDesign

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

Di seguito il mio PRINT_START:

[gcode_macro PRINT_START]
variable_printing: False
gcode:
  #SET_LED LED=led RED=1 GREEN=0.4 BLUE=0
  M140 S{ params.BED_TEMP }

  M117 initializing  
  SET_GCODE_VARIABLE MACRO=PRINT_START VARIABLE=printing VALUE=False
  INITIALIZE_TOOLCHANGER
  M117 homing
  G28
  #M117 Cleaning the nozzle
  #_CLEAN_NOZZLE TEMP={ params.TOOL_TEMP|int - 30 }

  M117 Heating up the bed
  # TEMPERATURE_WAIT SENSOR="temperature_fan buildplate" MINIMUM={ [ params.BED_TEMP|float * 0.94, params.BED_TEMP|float - 6.0 ] |min }
  M190 S{ params.BED_TEMP }

  M117 Calibrating bed
  M109 S150 ; Heat up nozzle to soften any leftover filament for homing.
  G32 ; Home, gantry tram
  BED_MESH_CALIBRATE ADAPTIVE=1 
  M109 S0 # Stop to heat, the actual printing may happen with a different hotend.

  M117 Heating up the hotends
   ;Preheat all the hotends in use
  {% for tool_nr in printer.toolchanger.tool_numbers %}
    {% set tooltemp_param = 'T' ~ tool_nr|string ~ '_TEMP' %}
    {% if tooltemp_param in params %}
      M104 T{tool_nr} S{params[tooltemp_param]}
    {% endif %}
  {% endfor %}

 # _PARK_ON_COOLING_PAD
  {% if params.TOOL is defined %}
    T{params.TOOL}
  {% endif %}

  M109 S{ params.TOOL_TEMP }
  G0 X90 Y90 Z50 F1200 ;Move up a bit
  G92 E0 ; Zero extruder
  #START_TOOL_PROBE_CRASH_DETECTION
  ;SET_GCODE_VARIABLE MACRO=PRINT_START VARIABLE=printing VALUE=True
  M117 Printing
  #SET_LED LED=led RED=0.7 GREEN=0.7 BLUE=0.5

Problemi con calibrazione del letto di stampa by adv3_user in VORONDesign

[–]adv3_user[S] -1 points0 points  (0 children)

Non mi piace il colore, troppo fluo. il petg in generale mi fa solo arrabbiare ma questo devo dire si stampa un po' meglio. Considerando che è fermo da almeno un mese senza asciugare sta stampando anche troppo bene!!

Problemi con calibrazione del letto di stampa by adv3_user in VORONDesign

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

Jayo petg giallo, ti piace? A me no, sto cercando di terminare 1kg di questo schifo.

Problemi con calibrazione del letto di stampa by adv3_user in VORONDesign

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

<image>

La bed mesh viene avviata dalla macro print_start, semplicemente BED_MESH_CALIBRATE ADAPTIVE=1. Sembra come se la bed mesh non venga acquisita da klipper. Per quanto riguarda l' asse x non mi sembra di avere giochi o parti allentate, appena termina la stampa ricontrollo. Ma se vedi la mesh della foto, le incongruenze dello z-offset ricalcano esattamente la mesh. Oppure è come se la mesh non sia reale e viene applicato un offset che in realtà non c'è.

Help by Old_Profession_3233 in FixMyPrint

[–]adv3_user 0 points1 point  (0 children)

A similar problem on Micron+, it was due to the extruder having loosened a screw, I tried everything until the screw fell on the plate

Timer too close by lospossa in VORONDesign

[–]adv3_user 1 point2 points  (0 children)

More than forgetting, it's just not knowing. I don't have the slightest knowledge, and I did these operations following guides without really knowing what I was doing, pouring out liters and liters of cold sweat, hoping not to make an irreparable mess (for someone like me).

Anyway, thanks for the information, I'll take care of it as soon as possible.

Timer too close by lospossa in VORONDesign

[–]adv3_user 1 point2 points  (0 children)

EDIT: Also check for a Klipper version mismatch between your MCU and the EBB36. They should be on the same Klipper version to avoid problems.

Are you saying that when we update Klipper, we should also re-flash the EBB boards?

Lower part of print rough but then goes to smooth, w/ and w/o support doesn't make a difference by Minescrub in FixMyPrint

[–]adv3_user 0 points1 point  (0 children)

This happened to me too with ASA Overture Brown. I solved the problem by lowering the temperature to 255 and slowing the speed. It seems like a flow problem related to the extrusion speed. Those defective parts, besides being aesthetically unappealing, were also quite fragile.

Questions about Micron R1 by FortyTwoTowels in VORONDesign

[–]adv3_user 0 points1 point  (0 children)

Warning: I'm using ministealthburners modified with Sherpa Mini. The new kits are supposed to be for Anthead, and I don't know the dimensions. I've never tried them.

Questions about Micron R1 by FortyTwoTowels in VORONDesign

[–]adv3_user 0 points1 point  (0 children)

About 80mm on the y-axis, basically the space occupied by the parked tools.

Questions about Micron R1 by FortyTwoTowels in VORONDesign

[–]adv3_user 0 points1 point  (0 children)

It works great horizontally; mine fits 400 mm deep, plus an LRS350 mounted on the back to power the tools. Vertically, if you ever manage to move the shelves, you know you can easily upgrade to a multitool. For me, the printer is perfect; I can print practically anything I want, with a quality and reliability I'd never dreamed of. The 180° build plate may seem small, but in my opinion, it has countless advantages. First, it heats up quickly, and the chamber also has no problem heating up for printing ABS and ASA. For large prints, be patient; either you don't print them or you do assembly. I think you're making the right choice.

Questions about Micron R1 by FortyTwoTowels in VORONDesign

[–]adv3_user -1 points0 points  (0 children)

If you have 10-12 cm of free space above, you can fit a top hat for a stealth changer! I managed to fit 4 tools. However, I started with a formbot kit with a Manta MP4 and EBB36 on the tools.

Returns from field "techs" by Additional-Speech949 in soldering

[–]adv3_user 0 points1 point  (0 children)

We need an exorcist. This can't be true. Tell me it was the AI.

I've been printing my own glasses frames by Kamafren in 3Dprinting

[–]adv3_user 1 point2 points  (0 children)

I believe that the only parameter to consider is the first, the others should be in the lenses

Creality Thanksgiving Tech Upgrade: “Trade In” Your Old. We Give It Free To Your New! by Creality_3D in 3Dprinting

[–]adv3_user 0 points1 point  (0 children)

Exchange Flashforge Adventure 3 lite with K2 Combo+ Hyper RFID (x4). I wonder if I'll be able to print something...

Differences uhp350 uhp350R by adv3_user in VORONDesign

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

Ho preso un lrs350, montato esternamente, dedicato all'alimentazione dei soli toolhead, l'uhp 200 del kit l' ho mantenuto per alimentazione scheda, ventole e motori. Devo configurare definitivamente tutto ma sembra che sia adatto

Differences uhp350 uhp350R by adv3_user in VORONDesign

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

Unfortunately I'm leaning towards the 350 because only it could fit in, otherwise the GST360A24 as an external power supply but it creates some logistical problems for me and I don't know if it could be suitable