uncrustify libraries/AP_Relay/AP_Relay.h

This commit is contained in:
uncrustify 2012-08-16 23:21:08 -07:00 committed by Pat Hickey
parent 241ec3508e
commit 75d8345ad1

View File

@ -15,22 +15,22 @@
/// @class AP_Relay
/// @brief Class to manage the APM relay
class AP_Relay{
class AP_Relay {
public:
// activate the relay
void on();
// activate the relay
void on();
// de-activate the relay
void off();
// de-activate the relay
void off();
// toggle the relay status
void toggle();
// toggle the relay status
void toggle();
// set the relay status (on/off)
void set(bool status);
// set the relay status (on/off)
void set(bool status);
// get the relay status (on/off)
bool get();
// get the relay status (on/off)
bool get();
};