question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

[FeatureRequest] Add the possibility to specify a time parameter in the speed component

See original GitHub issue

Some Robot Languages (like UR) allow for specifying the time a movement should take. UR implements this with the t=xx parameter in most move fuctions. I saw that this functionality is already available in the RobotCellUR but I may be mistaken: https://github.com/visose/Robots/blob/9fc97b7ced60f321af310d68ee2cf1ea4b838ecd/Robots/RobotCellUR.cs#L342-L343

would it be possible to expose a time input in the speed component or would that be confusing/break things for robots that don’t use this functionality?

Issue Analytics

  • State:closed
  • Created 3 years ago
  • Comments:5 (1 by maintainers)

github_iconTop GitHub Comments

1reaction
visosecommented, Feb 8, 2021

You can create or modify a Speed parameter using a scripting component. You can there set variables not exposed as inputs such as Time and Acceleration

0reactions
robin-gdwlcommented, Feb 8, 2021

For Reference: this is the code I used to create a speed parameter with a time value: Written in C#. I did not need to specify using Robots;. Adding the Assembly by right clicking on the c# scripting component was enough.

//using Robots;
//namespace Robots;

var inputspeed = new Speed() ;
inputspeed.Time = time;

Robotspeed = inputspeed;
Print(inputspeed.Time.ToString());

image

Read more comments on GitHub >

github_iconTop Results From Across the Web

FEATURE REQUEST - Wolfmix
What I need is blinder plus strobe on one key ( do they both work by pressing both keys at the same time...
Read more >
How can you program a movement that is independent of ...
Hi together, i have a UR10e robot. It has two important movements. The customer wants to adjust only one movement with the sliderspeed....
Read more >
FIXTURE EDITOR: Adding unlisted parameters - Eos Family
FIXTURE EDITOR: Adding unlisted parameters. Is it true to add unlisted parameters ( like, apparently, "Pan Fine"; "Pan/ Tilt speed" you cannot ...
Read more >
Feature request - cluster library - Grasshopper - McNeel Forum
Any time I find myself doing the same thing with a set of components I make a small cluster but the issue I'm...
Read more >
DQMH Feature Requests - NI Community - National Instruments
Discussion: DQMH first experience and a bit of a feature request. Add support for Real-Time or create a new DQMH module/project that would ......
Read more >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found