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
|
|
|
|
|
|
|
|
#include <AP_Gripper/AP_Gripper.h>
|
|
|
|
|
2022-09-20 04:37:47 -03:00
|
|
|
#if AP_GRIPPER_ENABLED
|
|
|
|
|
2016-10-28 19:05:19 -03:00
|
|
|
class AP_Gripper_Backend {
|
|
|
|
public:
|
|
|
|
AP_Gripper_Backend(struct AP_Gripper::Backend_Config &_config) :
|
|
|
|
config(_config) { }
|
|
|
|
|
|
|
|
// initialise the gripper backend
|
|
|
|
void init();
|
|
|
|
|
|
|
|
// update - should be called at at least 10hz
|
|
|
|
void update();
|
|
|
|
|
|
|
|
// grab - move the servo to the grab position
|
|
|
|
virtual void grab() = 0;
|
|
|
|
|
|
|
|
// release - move the servo output to the release position
|
|
|
|
virtual void release() = 0;
|
|
|
|
|
2016-11-18 03:52:15 -04:00
|
|
|
// valid - returns true if the backend should be working
|
2016-12-19 23:18:18 -04:00
|
|
|
virtual bool valid() const { return true; };
|
2016-11-18 03:52:15 -04:00
|
|
|
|
2016-11-17 23:12:58 -04:00
|
|
|
// released - returns true if currently in released position
|
|
|
|
virtual bool released() const = 0;
|
|
|
|
|
|
|
|
// grabbed - returns true if currently in grabbed position
|
|
|
|
virtual bool grabbed() const = 0;
|
|
|
|
|
2023-10-11 04:41:53 -03:00
|
|
|
// type-specific initialisations:
|
2016-10-28 19:05:19 -03:00
|
|
|
virtual void init_gripper() = 0;
|
|
|
|
|
|
|
|
// type-specific periodic updates:
|
|
|
|
virtual void update_gripper() { };
|
|
|
|
|
|
|
|
protected:
|
|
|
|
|
2022-08-06 10:35:17 -03:00
|
|
|
uint32_t _last_grab_or_release; // ms; time last grab or release happened
|
|
|
|
|
2016-10-28 19:05:19 -03:00
|
|
|
struct AP_Gripper::Backend_Config &config;
|
|
|
|
};
|
2022-09-20 04:37:47 -03:00
|
|
|
|
|
|
|
#endif // AP_GRIPPER_ENABLED
|