2016-10-28 19:05:19 -03:00
|
|
|
/*
|
|
|
|
This program is free software: you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program 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/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2022-09-20 04:37:47 -03:00
|
|
|
#include "AP_Gripper_config.h"
|
|
|
|
|
|
|
|
#if AP_GRIPPER_ENABLED
|
|
|
|
|
2016-10-28 19:05:19 -03:00
|
|
|
#include <AP_Param/AP_Param.h>
|
|
|
|
|
|
|
|
class AP_Gripper_Backend;
|
|
|
|
|
|
|
|
class AP_Gripper {
|
|
|
|
public:
|
|
|
|
AP_Gripper();
|
|
|
|
|
2022-09-30 06:50:43 -03:00
|
|
|
/* Do not allow copies */
|
|
|
|
CLASS_NO_COPY(AP_Gripper);
|
2018-06-08 00:36:31 -03:00
|
|
|
|
2019-02-10 14:31:01 -04:00
|
|
|
static AP_Gripper *get_singleton();
|
|
|
|
static AP_Gripper *_singleton;
|
2018-06-08 00:36:31 -03:00
|
|
|
|
2016-10-29 08:01:18 -03:00
|
|
|
// indicate whether this module is enabled or not
|
|
|
|
bool enabled() const { return _enabled; }
|
|
|
|
|
2016-10-28 19:05:19 -03:00
|
|
|
// initialise the gripper
|
|
|
|
void init();
|
|
|
|
|
|
|
|
// grab - move the servo to the grab position
|
|
|
|
void grab();
|
|
|
|
|
|
|
|
// release - move the servo output to the release position
|
|
|
|
void release();
|
|
|
|
|
2016-11-17 23:12:58 -04:00
|
|
|
// released - returns true if currently in released position
|
|
|
|
bool released() const;
|
|
|
|
|
|
|
|
// grabbed - returns true if currently in grabbed position
|
|
|
|
bool grabbed() const;
|
|
|
|
|
2016-10-28 19:05:19 -03:00
|
|
|
// update - should be called at at least 10hz
|
|
|
|
void update();
|
|
|
|
|
2016-11-18 03:52:15 -04:00
|
|
|
// valid - returns true if we have a gripper and it should work
|
|
|
|
bool valid() const;
|
|
|
|
|
2016-10-28 19:05:19 -03:00
|
|
|
static const struct AP_Param::GroupInfo var_info[];
|
|
|
|
|
|
|
|
// parameters
|
|
|
|
AP_Int8 _enabled; // grabber enable/disable
|
|
|
|
|
2016-10-29 08:01:18 -03:00
|
|
|
typedef enum {
|
2022-12-13 06:34:33 -04:00
|
|
|
STATE_NEUTRAL,
|
2016-10-29 08:01:18 -03:00
|
|
|
STATE_GRABBING,
|
|
|
|
STATE_RELEASING,
|
|
|
|
STATE_GRABBED,
|
|
|
|
STATE_RELEASED,
|
|
|
|
} gripper_state;
|
|
|
|
|
2016-10-28 19:05:19 -03:00
|
|
|
struct Backend_Config {
|
|
|
|
AP_Int8 type; // grabber type (e.g. EPM or servo)
|
|
|
|
AP_Int16 grab_pwm; // PWM value sent to Gripper to initiate grabbing the cargo
|
|
|
|
AP_Int16 release_pwm; // PWM value sent to Gripper to release the cargo
|
2016-10-29 08:01:18 -03:00
|
|
|
AP_Int16 neutral_pwm; // PWM value sent to gripper when not grabbing or releasing
|
2023-10-11 04:41:53 -03:00
|
|
|
AP_Int8 regrab_interval; // Time in seconds that EPM gripper will regrab the cargo to ensure grip has not weakened
|
2022-07-31 22:45:52 -03:00
|
|
|
AP_Float autoclose_time; // Automatic close time (in seconds)
|
2016-10-29 08:01:18 -03:00
|
|
|
AP_Int16 uavcan_hardpoint_id;
|
|
|
|
|
2022-12-13 06:34:33 -04:00
|
|
|
gripper_state state = STATE_NEUTRAL;
|
2016-10-28 19:05:19 -03:00
|
|
|
} config;
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
|
|
|
AP_Gripper_Backend *backend;
|
|
|
|
};
|
2018-06-08 00:36:31 -03:00
|
|
|
|
|
|
|
namespace AP {
|
2024-02-21 02:40:34 -04:00
|
|
|
AP_Gripper &gripper();
|
2018-06-08 00:36:31 -03:00
|
|
|
};
|
2022-09-20 04:37:47 -03:00
|
|
|
|
|
|
|
#endif // AP_GRIPPER_ENABLED
|