-
Notifications
You must be signed in to change notification settings - Fork 7
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
(WIP) Arm autonomy #4
Open
kira-the-engineer
wants to merge
109
commits into
master
Choose a base branch
from
arm-autonomy
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
- Added folder for controllers - Added folder for hardware interface - Added folder for launch file
- Renamed 'controllers' to 'config' and added yaml file with joint names - Added WIP hardware interface, still working on robot specific cmds + getting vectors/containers made for all the necessary data
…orkspace, still figuring out two compile errors
…ng data from the arm - Created seperate "arm_state" interface to avoid clogging up hw_interface code with extra sm defines and functions - Added in variables for pos, velocity, and effort for robot state controller - Added 3 getter functions for joint data (setters will be implemented when planning write func)
…or getter functions
…with the hardware interface
- ordered vectors so they match joints list - added read params for joint positions
- Added in functions for getting arm states to main hw interface - Made loop for placing values into vectors
- Added functionality for writing in arm_state using the 'smSetParameter' cmd. - There are ways to optimize writing/sending of cmds, but this will hopefully work for the first iteration - Added interface in hw interface for writing using the functions created in arm_state
…ch file to include it. Currently investigating errors with launch file.
…ntly having compilation errors - Redid CMake file/package.xml to designate the 'arm_hw_interface_node' as an executable - This redoing caused previously 'hidden' errors to appear bc of properly compiling the arm state code - Type mismatch between the Smints (long int) required for ionis and doubles required for controllers is causing probs - currently working on trying to cast smints to correct data type for controllers + added in additional double vars to store these
…destructor of the arm state class
… Created new tab for MoveIt interface. MoveIt widget/slots still being worked on. groundstation.launch set to launch the single screened version of groundstation. Temporarily removed some files as they were causing build issues. Will pull these files into branch again at a later date.
- stop controllers is only a function in melodic and higher - going to look into "ignoring" messages instead of directly interfacing with ros control
- added pub + subscriber for querying/updating status of controllers. - two booleans control the status for the arm- one checks if the button has been pushed, the other checks if the hardware interface is actually running.
…difying the c++ side of things
…d on the groundstation. Still figuring out what UI to use for the indicator for if IK is on or off
…ction for the ik indicator. Need to create a UI file as well...
…roslaunch rover_main ground_station.launch to view.
… file/variable names
…to test things...
…ers as well as launch file for rover
…the groundstation.
…ndstation should bring up the IK controls interface and MoveIt. Maps have been temporariliy disabled to allow the groundstation to launch on a computer even if key is not present.
Merge UI for arm-autonomy into the arm-autonomy branch
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Work in progress branch for developing ROS control for arm autonomy.