Browse Source

AP_Relay: add static create method

mission-4.1.18
Lucas De Marchi 8 years ago committed by Francisco Ferreira
parent
commit
87d2bf22f2
  1. 12
      libraries/AP_Relay/AP_Relay.h

12
libraries/AP_Relay/AP_Relay.h

@ -14,10 +14,16 @@
#define AP_RELAY_NUM_RELAYS 4 #define AP_RELAY_NUM_RELAYS 4
/// @class AP_Relay /// @class AP_Relay
/// @brief Class to manage the APM relay /// @brief Class to manage the ArduPilot relay
class AP_Relay { class AP_Relay {
public: public:
AP_Relay(); 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;
// setup the relay pin // setup the relay pin
void init(); void init();
@ -37,6 +43,8 @@ public:
static const struct AP_Param::GroupInfo var_info[]; static const struct AP_Param::GroupInfo var_info[];
private: private:
AP_Relay();
AP_Int8 _pin[AP_RELAY_NUM_RELAYS]; AP_Int8 _pin[AP_RELAY_NUM_RELAYS];
AP_Int8 _default; AP_Int8 _default;
}; };

Loading…
Cancel
Save