File rosparameters_configuration.hpp

Author

Vincent Berenz

Copyright

Copyright (c) 2019, New York University and Max Planck Gesellschaft, License BSD-3-Clause

Date

2019-12-09

Defines

ROSPARAM_KP
ROSPARAM_KD
ROSPARAM_KI
namespace package_template
class RosParameters_configuration : public package_template::Gains_configuration

Read gains configuration from the ros parameter server.

Public Functions

RosParameters_configuration()

Attempt to get the gains from the parameter server (“gains_kp”,”gains_kd”,”gains_ki” parameters) If roscore is running, calls to this constructor will be blocking until all the gains are read or roscore is turned off.

If roscore is turned off before gains are read, has_error() will return true

See also

has_error()

virtual double get_kp() const

Get the proportinal gain.

virtual double get_kd() const

Get the derivative gain.

virtual double get_ki() const

get the integral gain

virtual bool has_error() const

Check if there are internal errors

virtual std::string get_error() const

Get the error messages

Private Members

double kp_

Proportinal gain.

double kd_

Derivative gain.

double ki_

Integral gain.

std::string error_message_

Internal error message.

bool error_

True is an error occured.