ardupilot/libraries/AP_Relay/AP_Relay.h

51 lines
1.1 KiB
C
Raw Normal View History

/*
* AP_Relay.h
*
* Created on: Oct 2, 2011
* Author: Amilcar Lucas
*/
/// @file AP_Relay.h
/// @brief APM relay control class
#pragma once
#include <AP_Param/AP_Param.h>
2014-01-19 21:59:21 -04:00
#define AP_RELAY_NUM_RELAYS 4
/// @class AP_Relay
2017-08-29 15:08:41 -03:00
/// @brief Class to manage the ArduPilot relay
class AP_Relay {
public:
2017-08-29 15:08:41 -03:00
static AP_Relay create() { return AP_Relay{}; }
constexpr AP_Relay(AP_Relay &&other) = default;
/* Do not allow copies */
AP_Relay(const AP_Relay &other) = delete;
AP_Relay &operator=(const AP_Relay&) = delete;
2012-12-04 19:26:30 -04:00
// setup the relay pin
void init();
// activate the relay
2014-01-19 21:59:21 -04:00
void on(uint8_t relay);
// de-activate the relay
2014-01-19 21:59:21 -04:00
void off(uint8_t relay);
2014-01-20 00:35:38 -04:00
// see if the relay is enabled
bool enabled(uint8_t relay) { return relay < AP_RELAY_NUM_RELAYS && _pin[relay] != -1; }
// toggle the relay status
2014-01-19 21:59:21 -04:00
void toggle(uint8_t relay);
static const struct AP_Param::GroupInfo var_info[];
private:
2017-08-29 15:08:41 -03:00
AP_Relay();
2014-01-19 21:59:21 -04:00
AP_Int8 _pin[AP_RELAY_NUM_RELAYS];
AP_Int8 _default;
};