Thread Rating:
  • 1 Vote(s) - 4 Average
  • 1
  • 2
  • 3
  • 4
  • 5

3 d printing with UR10e

#12
Thank you for your feedback. I recommend you to use the default post processor called Universal Robots, which generates a script file and a URP program with that script. Then, you can take the components you need from the 3D printing example. Unless you've calibrated your extruder, you'll need to customize a few things to properly integrate with your extruder, such as adjusting the flow ratio. You can do this in the post processor or probably in your slicer software as well.

You'll find the following setAO function with the default post processor:

Code:
def setAO(self, io_var, io_value):
"""Set an Analog Output"""
self.make_last_move_accurate()
if type(io_value) != str: # set default variable value if io_value is a number
io_value = str(io_value)

if type(io_var) != str: # set default variable name if io_var is a number
newline = 'set_standard_analog_out(%s, %s)' % (str(io_var), io_value)
else:
newline = '%s = %s' % (io_var, io_value)

self.addline(newline)


Messages In This Thread
3 d printing with UR10e - bymehrbod- 05-23-2020, 01:12 PM
RE: 3D printing with UR10e - byAlbert- 05-25-2020, 09:54点
RE: 3D printing with UR10e - byJerome LC- 06-08-2020, 01:51 PM
RE: 3D printing with UR10e - byAlbert- 06-17-2020, 02:09 PM
RE: 3D printing with UR10e - bymehrbod- 07-03-2020, 11:50 AM
RE: 3D printing with UR10e - byKosiahn- 04-20-2021, 06:32 AM
RE: 3D printing with UR10e - byJeremy- 04-21-2021, 07:25 PM
RE: 3D printing with UR10e - byKosiahn- 05-10-2021, 02:05 PM
RE: 3D printing with UR10e - byAlbert- 05-10-2021, 09:08 PM
RE: 3D printing with UR10e - byKosiahn- 05-11-2021, 07:14有空
RE: 3D printing with UR10e - byKosiahn- 05-17-2021, 02:09 PM
RE: 3D printing with UR10e - byAlbert- 05-19-2021, 12:42 PM
RE: 3D printing with UR10e - byKosiahn- 06-04-2021, 12:20 PM
RE: 3D printing with UR10e - byKosiahn- 06-07-2021, 07:15 AM
RE: 3D printing with UR10e - byJeremy- 06-07-2021, 11:07 AM
RE: 3D printing with UR10e - byKosiahn- 06-09-2021, 07:49 AM



Users browsing this thread:
1 Guest(s)