1234567891011121314151617181920212223 |
-
-
- #ifndef __ESP_RELAIS_ACTOR__
- #define __ESP_RELAIS_ACTOR__
-
- void relais_init(void);
- int relais_count(void);
- void relais_set(int relais, int state);
- int relais_get(int relais);
- String relais_name(int relais);
-
- #endif
|