Hi,
I just smoked my 6HC v1.01 by accidentally connecting it to 48V.
Is there any experience of which components were damaged in the process? If only a few parts of the PWM buck converter are fried, I would try to replace them.
I've already ordered a new 1.02 board, but if I can recover the old one, it wouldn't be too bad.
I would really appreciate some tips.
Latest posts made by moosi
-
I smoked the 6HC v1.01
-
RE: G38.2 - error handling
@OwenD
thanks so much.
It is exactly what I was looking for. -
RE: G38.2 - error handling
Thanks @Phaedrux
maybe this place is better -
G38.2 - error handling
Hi there,
I´m using G38.2 to probe toward a workpiece.
In the case of an error the message is displayed.
How can I react to an error? In my case I want to stop the program, and show a custom message.
Maybe I want to retry the probing move, but in the end I need to abort the gcode.
Is there a way with conditional gcode or so?thanks for your help.
-
RE: How to set the percentage complete in Gcode?
@dc42
thanks a lot. I will do so. -
RE: How to set the percentage complete in Gcode?
It´s:
Board: Duet 3 MB6HC (MB6HC)
DSF Version: 3.4-rc1
Firmware: RepRapFirmware for Duet 3 MB6HC 3.4.0rc1 (2022-02-09)I´m going to check the "slicer" time.
-
RE: How to set the percentage complete in Gcode?
@dc42
thanks a lot for your reply.
Yes it does support time, but DWC is only showing percentage. M73 has apparently no impact on DWCs calculations. AFAIK it uses filament and byte positions as fallback but no M73.Do I miss something?
-
How to set the percentage complete in Gcode?
Hi,
I would like to set the percentage via Gcode. I know M73 but according to the wiki it is not supported by RRF.
I could live with either the percentage or remaining time, but I have to set in the code.Are there any ways of doing this?
thanks for your help
-
DWC print time in minutes, not percent?
Hi,
can DWC show the remaining print time in minutes?thanks
Moosi -
Waiting for a message in DWC
Hi,
I´m want to communicate between duet3 and an arduino.
So far I can send messages to the arduino (M118 ) and receive them when sent via the serial port.What I want to do now is to wait for a specific response after sending a message.
I created a vue button (v-btn) and used this code for the click event below.
What is the right way to do it?async click() { if (!this.waitingForCode) { this.waitingForCode = true; try { await this.sendCode(`M118 P2 S"MyMessageToArduino" L0`); } catch (e) { console.log(e); } // How do I wait for a message sent back from the arduino? Let´s say I want to wait for G555 or any other message... this.waitingForCode = false; } },
thanks for your help
Moosi