Search found 27 matches

by matt_tesch
Tue Aug 31, 2021 2:11 pm
Forum: C++
Topic: Outdated nuget packages
Replies: 9
Views: 14273

Re: Outdated nuget packages

Ok, the HEBI C++ API v3.3.0 should now be available in NuGet. Note there are a couple backwards-incompatible changes from v1.0.0 (the last NuGet version) and v3.x. These are: - timestamps, and sender ID moved from hebi::Feedback.actuator() to hebi::Feedback - the robot model parsing and API has chan...
by matt_tesch
Tue Aug 31, 2021 1:24 pm
Forum: C++
Topic: Outdated nuget packages
Replies: 9
Views: 14273

Re: Outdated nuget packages

I just got the NuGet package build working. I'm doing some final tests here, but I should be pushing this in the next hour.

Thanks again for your patience! I'll go ahead and update our release scripts so this is built and updated for future releases as well.
by matt_tesch
Mon Aug 30, 2021 10:58 am
Forum: C++
Topic: Outdated nuget packages
Replies: 9
Views: 14273

Re: Outdated nuget packages

Apologies for the delay. Yes, CMake can be used to generate Visual Studio projects. I updated the instructions at https://github.com/HebiRobotics/hebi-cpp-examples; please let me know if this makes sense and you are able to build these at least. However, I know that doesn't fully solve the NuGet iss...
by matt_tesch
Tue Aug 17, 2021 3:43 pm
Forum: C++
Topic: innerEffortCmd reading
Replies: 7
Views: 8361

Re: innerEffortCmd reading

Thanks for pointing this out. Currently, this is only viewable via the MATLAB API; however, we will update the C API with this feedback this week, and should have C++ API support next week.

Sorry for the issue!

Best,
Matt
by matt_tesch
Tue Aug 17, 2021 3:32 pm
Forum: C++
Topic: Outdated nuget packages
Replies: 9
Views: 14273

Re: Outdated nuget packages

Sorry for the issues here. You are correct, the NuGet packages are quite outdated; we had been primarily focused on the CMake workflow and let these slip because of a complication with a library reference. I'll try to get this sorted out and get new versions out this week. I'll keep you posted on th...
by matt_tesch
Thu Jun 17, 2021 5:11 pm
Forum: Kits|Other
Topic: daisyStart startup script not working
Replies: 1
Views: 16791

Re: daisyStart startup script not working

Thanks for writing, and for the initial diagnosis. If I understand correctly, Scope successfully fins the modules when run on the same computer as the script fails on, correct? Here are a couple questions/ideas to hopefully get this tracked down: System: - In Scope, are you sure all 18 modules are p...
by matt_tesch
Mon Mar 15, 2021 12:30 pm
Forum: Python
Topic: Stop position commands
Replies: 4
Views: 6027

Re: Stop position commands

Whoops -- missed your last question there. You can combine the actuators into one group, but still index into the commands to send individual values for commands. However, when you call "send command", messages are sent to all actuators in the group with their respective commands; you cannot just se...
by matt_tesch
Mon Mar 15, 2021 12:16 pm
Forum: Python
Topic: Stop position commands
Replies: 4
Views: 6027

Re: Stop position commands

Rasmus, Sorry for the late reply. Thanks for sharing the code snippets -- I can point out a few things here that should help and may address the problem. I don't see any velocity commands, though. If you are able to share a full file, I can provide more complete feedback; alternatively, I would be h...
by matt_tesch
Mon Mar 08, 2021 11:00 am
Forum: Python
Topic: Stop position commands
Replies: 4
Views: 6027

Re: Stop position commands

Rasmus, Thanks for reaching out. My guess here is that you are using a CommandStruct/GroupCommand which still has position commands in it. The solution here is either to clear the position command from the CommandStruct/GroupCommand, or to use a new CommandStruct/GroupCommand object. If you let me k...
by matt_tesch
Mon Mar 08, 2021 10:54 am
Forum: Python
Topic: Command position with maximum allowed velocity
Replies: 2
Views: 4361

Re: Command position with maximum allowed velocity

Rasmus, When commanding a position, this is telling the actuator to try to move to this position instantaneously. While you can use velocity limits to try to address the issue, this isn't really what they are designed for. Instead, we recommend you plan a smooth trajectory to the destination positio...