Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F90726546
OncillaL0.h
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Mon, Nov 4, 05:28
Size
1 KB
Mime Type
text/x-c++
Expires
Wed, Nov 6, 05:28 (2 d)
Engine
blob
Format
Raw Data
Handle
22124613
Attached To
R6622 liboncilla
OncillaL0.h
View Options
#pragma once
#include <iostream>
#include <tr1/memory>
#include <rci/ResourceNode.h>
#include <rci/Controlled.h>
#include <rci/Sensing.h>
#include <rci/dto/JointAngles.h>
#include "OncillaSynchronizer.h"
namespace rci {
namespace oncilla {
class OncillaL0;
typedef std::tr1::shared_ptr<OncillaL0> OncillaL0Ptr;
/**
* Node class, representing the hip node of the quadruped robot.
* @todo In case of simulation, this node can also sense the power consumption.
*/
class OncillaL0: public rci::ResourceNode,
public rci::Controlled,
public rci::PositionControlled {
public:
/**
* Special constructor to also link to webots
*/
OncillaL0(const std::string &name = "Oncilla Hip");
virtual ~OncillaL0();
/**
* Returns, if controller is converged.
* @return True, if controller is converged after last command.
*/
bool isConverged() const;
/**
* Commanding a joint position.
* @param position Position command
* @return Return, if successfull. (e.g. not exceeding joint limits)
* @todo Check for correct control mode
*/
bool setJointPosition(JointAnglesPtr position);
void setRawLocalCommand(double value);
double getRawLocalCommand() const;
/**
* Returns latest position command. Note, that this is the latest valid
* commanded position. If the position command exceeds limits and is
* therefore rejected, it ..
*/
virtual JointAnglesPtr getLastPositionCommand() const;
/**
* Print
*/
std::string print() const;
};
}
}
Event Timeline
Log In to Comment