/* tasmota_compat.h - ESP32 support for Tasmota Copyright (C) 2021 Jörg Schüler-Maroldt and Theo Arends This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . */ #pragma once #ifdef ESP32 #include // Modul #undef MODULE #define MODULE WEMOS // [Module] Select default model #endif // ESP32 #ifdef ESP8266 // ESP8266 // // UDP #define PortUdp_write(p,n) PortUdp.write(p, n) // // Serial minimal type to hold the config #define SerConfu8 uint8_t #endif // ESP8266