Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
R
RobotAPI
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Package Registry
Container Registry
Model registry
Operate
Terraform modules
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Florian Leander Singer
RobotAPI
Commits
895ac007
Commit
895ac007
authored
3 years ago
by
Johann Mantel
Browse files
Options
Downloads
Patches
Plain Diff
move GazeConrollerInterface back to armarx_control
parent
277c268a
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
source/RobotAPI/interface/CMakeLists.txt
+0
-1
0 additions, 1 deletion
source/RobotAPI/interface/CMakeLists.txt
source/RobotAPI/interface/units/RobotUnit/GazeController.ice
+0
-63
0 additions, 63 deletions
source/RobotAPI/interface/units/RobotUnit/GazeController.ice
with
0 additions
and
64 deletions
source/RobotAPI/interface/CMakeLists.txt
+
0
−
1
View file @
895ac007
...
...
@@ -72,7 +72,6 @@ set(SLICE_FILES
units/RobotUnit/NJointCartesianWaypointController.ice
units/RobotUnit/NJointCartesianNaturalPositionController.ice
units/RobotUnit/RobotUnitInterface.ice
units/RobotUnit/GazeController.ice
units/RobotUnit/NJointBimanualForceController.ice
units/RobotUnit/NJointBimanualObjLevelController.ice
...
...
This diff is collapsed.
Click to expand it.
source/RobotAPI/interface/units/RobotUnit/GazeController.ice
deleted
100644 → 0
+
0
−
63
View file @
277c268a
/*
* This file is part of ArmarX.
*
* ArmarX is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2 as
* published by the Free Software Foundation.
*
* ArmarX is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
* @package ArmarX::RobotAPI
* @author Raphael Grimm
* @copyright 2019 Humanoids Group, H2T, KIT
* @license http://www.gnu.org/licenses/gpl-2.0.txt
* GNU General Public License
*/
#pragma once
#include
<RobotAPI/interface/core/FramedPoseBase.ice>
#include
<RobotAPI/interface/units/RobotUnit/NJointController.ice>
module
armarx
{
module
control
{
module
gaze_controller
{
class
GazeControllerConfig
extends
NJointControllerConfig
{
string
cameraFrameName
=
"DepthCamera"
;
string
yawNodeName
=
"Neck_1_Yaw"
;
string
pitchNodeName
=
"Neck_2_Pitch"
;
string
cameraNodeName
=
"DepthCamera"
;
string
torsoNodeName
=
"TorsoJoint"
;
float
Kp
=
1
.
9
f
;
float
Ki
=
0
.
0
f
;
float
Kd
=
0
.
0
f
;
double
maxControlValue
=
1
.
0
;
double
maxDerivation
=
0
.
5
;
float
yawAngleTolerance
=
0
.
005
;
float
pitchAngleTolerance
=
0
.
005
;
bool
abortIfUnreachable
=
false
;
};
interface
GazeControllerInterface
extends
NJointControllerInterface
{
void
submitTarget
(
FramedPositionBase
target
,
long
requestTimestamp
);
void
removeTarget
();
void
removeTargetAfter
(
long
durationMilliSeconds
);
};
interface
GazeControllerListener
{
void
reportGazeTarget
(
long
requestTimestamp
,
long
reachedTimestamp
,
long
releasedTimestamp
,
long
abortedTimestamp
,
FramedPositionBase
target
);
};
};};};
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment