42 lines
899 B
C
42 lines
899 B
C
|
|
#ifndef CONTR_RELAY_H_QWERTY
|
|
#define CONTR_RELAY_H_QWERTY
|
|
|
|
void contr_txrelay_init(void);
|
|
void contr_txrelay_on(void);
|
|
void contr_txrelay_off(void);
|
|
void contr_txrelay_onoff(void);
|
|
|
|
void contr_relay10m_init(void);
|
|
void contr_relay10m_on(void);
|
|
void contr_relay10m_off(void);
|
|
|
|
void contr_relay20m_init(void);
|
|
void contr_relay20m_on(void);
|
|
void contr_relay20m_off(void);
|
|
|
|
void contr_relay40m_init(void);
|
|
void contr_relay40m_on(void);
|
|
void contr_relay40m_off(void);
|
|
|
|
void contr_relay80m_init(void);
|
|
void contr_relay80m_on(void);
|
|
void contr_relay80m_off(void);
|
|
|
|
void contr_buzzer_init(void);
|
|
void contr_buzzer_on(void);
|
|
void contr_buzzer_off(void);
|
|
void contr_buzzer_onoff(void);
|
|
|
|
void contr_fan_init(void);
|
|
void contr_fan_on(void);
|
|
void contr_fan_off(void);
|
|
void contr_fan_onoff(void);
|
|
bool contr_fan_is_on(void);
|
|
|
|
void contr_att_init(void);
|
|
void contr_att_on(void);
|
|
void contr_att_off(void);
|
|
|
|
#endif
|