mirror of
https://github.com/emsesp/EMS-ESP32.git
synced 2025-12-09 17:29:50 +03:00
73 lines
2.4 KiB
C++
73 lines
2.4 KiB
C++
/*
|
|
* EMS-ESP - https://github.com/emsesp/EMS-ESP
|
|
* Copyright 2020-2024 emsesp.org - proddy, MichaelDvP
|
|
*
|
|
* 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/>.
|
|
*/
|
|
|
|
#ifndef EMSESP_CONNECT_H
|
|
#define EMSESP_CONNECT_H
|
|
|
|
#include "emsesp.h"
|
|
|
|
namespace emsesp {
|
|
|
|
class Connect : public EMSdevice {
|
|
public:
|
|
Connect(uint8_t device_type, uint8_t device_id, uint8_t product_id, const char * version, const char * name, uint8_t flags, uint8_t brand);
|
|
|
|
class RoomCircuit {
|
|
public:
|
|
RoomCircuit(const uint8_t num)
|
|
: room_(num) {
|
|
}
|
|
~RoomCircuit() = default;
|
|
int16_t temp_;
|
|
int8_t humidity_;
|
|
uint8_t seltemp_;
|
|
uint8_t mode_;
|
|
char name_[51];
|
|
int16_t dewtemp_;
|
|
|
|
uint8_t room() {
|
|
return room_;
|
|
}
|
|
|
|
private:
|
|
uint8_t room_; // dhw circuit number 0..10
|
|
};
|
|
|
|
private:
|
|
std::shared_ptr<Connect::RoomCircuit> room_circuit(const uint8_t num, const bool create = false);
|
|
|
|
void register_device_values_room(std::shared_ptr<Connect::RoomCircuit> room);
|
|
void process_roomThermostat(std::shared_ptr<const Telegram> telegram);
|
|
void process_roomThermostatName(std::shared_ptr<const Telegram> telegram);
|
|
void process_roomThermostatMode(std::shared_ptr<const Telegram> telegram);
|
|
void process_roomThermostatParam(std::shared_ptr<const Telegram> telegram);
|
|
void process_roomThermostatData(std::shared_ptr<const Telegram> telegram);
|
|
bool set_mode(const char * value, const int8_t id);
|
|
bool set_seltemp(const char * value, const int8_t id);
|
|
bool set_name(const char * value, const int8_t id);
|
|
|
|
std::vector<std::shared_ptr<Connect::RoomCircuit>> room_circuits_;
|
|
|
|
void process_OutdoorTemp(std::shared_ptr<const Telegram> telegram);
|
|
int16_t outdoorTemp_;
|
|
};
|
|
|
|
} // namespace emsesp
|
|
|
|
#endif
|