mirror of
https://github.com/emsesp/EMS-ESP32.git
synced 2025-12-07 00:09:51 +03:00
58 lines
1.8 KiB
C++
58 lines
1.8 KiB
C++
/*
|
|
* EMS-ESP - https://github.com/proddy/EMS-ESP
|
|
* Copyright 2020 Paul Derbyshire
|
|
*
|
|
* 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 <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#if defined(EMSESP_TEST)
|
|
|
|
#ifndef EMSESP_TEST_H
|
|
#define EMSESP_TEST_H
|
|
|
|
#include "emsesp.h"
|
|
|
|
namespace emsesp {
|
|
|
|
// #define EMSESP_TEST_DEFAULT "thermostat"
|
|
// #define EMSESP_TEST_DEFAULT "solar"
|
|
// #define EMSESP_TEST_DEFAULT "mixer"
|
|
// #define EMSESP_TEST_DEFAULT "web"
|
|
// #define EMSESP_TEST_DEFAULT "general"
|
|
#define EMSESP_TEST_DEFAULT "boiler"
|
|
|
|
class Test {
|
|
public:
|
|
static void run_test(uuid::console::Shell & shell, const std::string & command);
|
|
static bool run_test(const char * command, int8_t id = 0);
|
|
static void dummy_mqtt_commands(const char * message);
|
|
static void rx_telegram(const std::vector<uint8_t> & data);
|
|
static void uart_telegram(const std::vector<uint8_t> & rx_data);
|
|
static void uart_telegram(const char * rx_data);
|
|
static void uart_telegram_withCRC(const char * rx_data);
|
|
static void add_device(uint8_t device_id, uint8_t product_id);
|
|
static void debug(uuid::console::Shell & shell, const std::string & command);
|
|
|
|
private:
|
|
#ifndef EMSESP_STANDALONE
|
|
static void listDir(fs::FS & fs, const char * dirname, uint8_t levels);
|
|
#endif
|
|
};
|
|
|
|
} // namespace emsesp
|
|
|
|
#endif
|
|
|
|
#endif
|