/* * relais.h * * ESP8266 / ESP32 Environmental Sensor * * ---------------------------------------------------------------------------- * "THE BEER-WARE LICENSE" (Revision 42): * wrote this file. As long as you retain this notice * you can do whatever you want with this stuff. If we meet some day, and you * think this stuff is worth it, you can buy me a beer in return. Thomas Buck * ---------------------------------------------------------------------------- */ #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 // __ESP_RELAIS_ACTOR__