2024-01-08 21:04:17 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "SoftwareSerial.h" // Using espsoftwareserial https://github.com/plerup/espsoftwareserial
|
|
|
|
#include "esphome/core/optional.h"
|
|
|
|
|
|
|
|
#include "ratgdo_state.h"
|
|
|
|
#include "protocol.h"
|
|
|
|
#include "callbacks.h"
|
|
|
|
#include "observable.h"
|
|
|
|
|
|
|
|
namespace esphome {
|
|
|
|
|
|
|
|
class Scheduler;
|
|
|
|
class InternalGPIOPin;
|
|
|
|
|
|
|
|
namespace ratgdo {
|
|
|
|
namespace secplus1 {
|
|
|
|
|
|
|
|
static const uint8_t RX_LENGTH = 2;
|
|
|
|
typedef uint8_t RxPacket[RX_LENGTH];
|
|
|
|
|
|
|
|
static const uint8_t TX_LENGTH = 4;
|
|
|
|
typedef uint8_t TxPacket[TX_LENGTH];
|
|
|
|
|
|
|
|
static const TxPacket toggle_door = {0x30, 0x31, 0x31, 0xFE};
|
|
|
|
static const TxPacket toggle_light = {0x32, 0x33, 0x33, 0xFE};
|
|
|
|
static const TxPacket toggle_lock = {0x34, 0x35, 0x35, 0xFE};
|
|
|
|
|
|
|
|
static const uint8_t secplus1_states[] = {0x35,0x35,0x35,0x35,0x33,0x33,0x53,0x53,0x38,0x3A,0x3A,0x3A,0x39,0x38,0x3A, 0x38,0x3A,0x39,0x3A};
|
|
|
|
|
|
|
|
ENUM(CommandType, uint16_t,
|
2024-01-09 08:40:07 +00:00
|
|
|
(WALL_PANEL_STARTING, 0x31),
|
2024-01-08 21:04:17 +00:00
|
|
|
(DOOR_STATUS, 0x38),
|
|
|
|
(OBSTRUCTION, 0x39), //
|
|
|
|
(OTHER_STATUS, 0x3A),
|
|
|
|
(UNKNOWN, 0xFF),
|
|
|
|
)
|
|
|
|
|
|
|
|
struct Command {
|
|
|
|
CommandType type;
|
|
|
|
uint8_t value;
|
|
|
|
|
|
|
|
Command(): type(CommandType::UNKNOWN) {}
|
|
|
|
Command(CommandType type_, uint8_t value_ = 0) : type(type_), value(value_) {}
|
|
|
|
};
|
|
|
|
|
2024-01-09 08:35:29 +00:00
|
|
|
enum class WallPanelEmulationState {
|
|
|
|
WAITING,
|
|
|
|
RUNNING,
|
|
|
|
};
|
2024-01-08 21:04:17 +00:00
|
|
|
|
|
|
|
class Secplus1 : public Protocol {
|
|
|
|
public:
|
|
|
|
void setup(RATGDOComponent* ratgdo, Scheduler* scheduler, InternalGPIOPin* rx_pin, InternalGPIOPin* tx_pin);
|
|
|
|
void loop();
|
|
|
|
void dump_config();
|
|
|
|
|
2024-01-09 08:35:29 +00:00
|
|
|
void sync();
|
|
|
|
|
2024-01-08 21:04:17 +00:00
|
|
|
void light_action(LightAction action);
|
|
|
|
void lock_action(LockAction action);
|
|
|
|
void door_action(DoorAction action);
|
|
|
|
void query_action(QueryAction action);
|
|
|
|
|
|
|
|
ProtocolArgs call(ProtocolArgs args);
|
|
|
|
|
|
|
|
protected:
|
2024-01-09 08:35:29 +00:00
|
|
|
void wall_panel_emulation(size_t index);
|
2024-01-08 21:04:17 +00:00
|
|
|
|
|
|
|
optional<Command> read_command();
|
|
|
|
void handle_command(const Command& cmd);
|
|
|
|
|
|
|
|
void print_rx_packet(const RxPacket& packet) const;
|
|
|
|
void print_tx_packet(const TxPacket& packet) const;
|
|
|
|
optional<Command> decode_packet(const RxPacket& packet) const;
|
|
|
|
|
|
|
|
void transmit_packet(const uint8_t packet[], uint32_t len);
|
|
|
|
void transmit_packet(const TxPacket& packet);
|
|
|
|
void transmit_packet_delayed(const uint8_t* packet, uint32_t len, uint32_t delay);
|
|
|
|
|
|
|
|
LightState light_state { LightState::UNKNOWN };
|
|
|
|
LockState lock_state { LockState::UNKNOWN };
|
|
|
|
DoorState door_state { DoorState::UNKNOWN };
|
|
|
|
DoorState prev_door_state { DoorState::UNKNOWN };
|
|
|
|
|
2024-01-09 08:35:29 +00:00
|
|
|
bool wall_panel_starting_ { false };
|
|
|
|
uint32_t wall_panel_emulation_start_ { 0 };
|
|
|
|
WallPanelEmulationState wall_panel_emulation_state_ { WallPanelEmulationState::WAITING };
|
|
|
|
|
|
|
|
// bool transmit_pending_ { false };
|
|
|
|
// uint32_t transmit_pending_start_ { 0 };
|
2024-01-08 21:04:17 +00:00
|
|
|
TxPacket tx_packet_;
|
|
|
|
|
|
|
|
uint32_t last_rx_ { 0 };
|
|
|
|
|
|
|
|
SoftwareSerial sw_serial_;
|
|
|
|
|
|
|
|
InternalGPIOPin* tx_pin_;
|
|
|
|
InternalGPIOPin* rx_pin_;
|
|
|
|
|
|
|
|
RATGDOComponent* ratgdo_;
|
|
|
|
Scheduler* scheduler_;
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace secplus1
|
|
|
|
} // namespace ratgdo
|
|
|
|
} // namespace esphome
|