ExtruderSpeed() function for 3D printing with ABB IRB120- Printable Version +- RoboDK Forum (//m.sinclairbody.com/forum) +-- Forum: RoboDK (EN) (//m.sinclairbody.com/forum/Forum-RoboDK-EN) + - - -论坛:General questions about RoboDK (//m.sinclairbody.com/forum/Forum-General-questions-about-RoboDK) +--- Thread: ExtruderSpeed() function for 3D printing with ABB IRB120 (/Thread-ExtruderSpeed-function-for-3D-printing-with-ABB-IRB120) |
RE: ExtruderSpeed() function for 3D printing with ABB IRB120-Otto_Scho-01-20-2021 (12-30-2020, 01:04 PM)Jeremy Wrote:Hi Otto, Hi Jeremy, in Yaskawa, it is not possible to use numbers with decimals as an Argument, Only Integers are allowed. But In ROBODK I become the speed of extruder as integer and decimal value for example :
Code:
Call Extruder (1510.560)
Is it Possible to get the number only in Integer form like:
Code:
Call Extruder(1510)
? Please see the attached Photo? BR RE: ExtruderSpeed() function for 3D printing with ABB IRB120-Jeremy-01-20-2021 Hi Otto, Here's a new post-processor that should remove the decimal. You can then divide by 100 000 once you retrieve the value in the controller. Hope it helps. Jeremy RE: ExtruderSpeed() function for 3D printing with ABB IRB120-Otto_Scho-01-25-2021 (01-20-2021, 05:30 PM)Jeremy Wrote:Hi Otto, Hi Jeremy, I added the new post-processor to my program but unfortunately, it didn't solve my problem. I still have the decimal! Otto RE: ExtruderSpeed() function for 3D printing with ABB IRB120-Otto_Scho-01-26-2021 (01-20-2021, 05:30 PM)Jeremy Wrote:Hi Otto, Hi Jeremy, the problem is partially solved. At first, it didn't work, because I found in the Python File that the dot is missed (.)
Code:
# Remove special characters
After Adding the dot the problem is solved. But I got now the program in such form:
Code:
CALL JOB:EX61356
CALL JOB:EX (61356) I tried to give the brackets and space in the Program Events but no gain... can you please guide me to solve this issue? THANX! Otto RE: ExtruderSpeed() function for 3D printing with ABB IRB120-Jeremy-01-26-2021 Hi Otto, Could you join your .rdk station so that I can test the modification before sending it to you. Jeremy RE: ExtruderSpeed() function for 3D printing with ABB IRB120-Otto_Scho-01-27-2021 (01-26-2021, 05:34 PM)Jeremy Wrote:Hi Otto, Hi Jeremy, Please find the attached file. Thank you:-) RE: ExtruderSpeed() function for 3D printing with ABB IRB120-Jeremy-01-27-2021 Hi Otto, I think that this one should work. Hope it helps. Jeremy RE: ExtruderSpeed() function for 3D printing with ABB IRB120-fahadak89-01-28-2021 @Jeremy Hello. Is it possible for Robo DK to generate extrusion commands in a way that Marlin firmware understands? For example instead of ExtruderSpeed or Extrudelength, is it possible to show G1 Evalue and F value from Slic3r in the code generated by Robo DK? RE: ExtruderSpeed() function for 3D printing with ABB IRB120-Jeremy-01-28-2021 Hi Fahadak89, I'll need a bit more information to answer you properly on this one. Can you provide de G code from Slic3r and provide a small example code of what you would like RDK to generate. That would help point you in the right direction. Jeremy RE: ExtruderSpeed() function for 3D printing with ABB IRB120-fahadak89-02-05-2021 Hello Jeremy, The G code file is attached with this message. I am having on more problem. When I am saving the robot program through Robo DK, it removes the decimal point from the extruder values. When I am showing the instructions of 3D printing program in the software environment, I can see the decimal with every extruder number but when I save the program, the decimal is gone. I am attaching the code file as well for your reference. |