2023-06-05 17:12:51 +00:00
|
|
|
/************************************
|
|
|
|
* Rage
|
|
|
|
* Against
|
|
|
|
* The
|
|
|
|
* Garage
|
|
|
|
* Door
|
|
|
|
* Opener
|
|
|
|
*
|
|
|
|
* Copyright (C) 2022 Paul Wieland
|
|
|
|
*
|
|
|
|
* GNU GENERAL PUBLIC LICENSE
|
|
|
|
************************************/
|
|
|
|
|
2023-06-05 18:07:10 +00:00
|
|
|
#pragma once
|
2023-06-07 21:06:11 +00:00
|
|
|
#include "esphome/components/uart/uart.h"
|
2023-06-05 18:34:06 +00:00
|
|
|
#include "esphome/core/component.h"
|
2023-06-05 19:46:23 +00:00
|
|
|
#include "esphome/core/gpio.h"
|
2023-06-06 01:05:37 +00:00
|
|
|
#include "esphome/core/log.h"
|
2023-06-06 01:06:12 +00:00
|
|
|
#include "esphome/core/preferences.h"
|
2023-06-05 18:07:10 +00:00
|
|
|
|
2023-06-05 18:26:26 +00:00
|
|
|
extern "C" {
|
|
|
|
#include "secplus.h"
|
|
|
|
}
|
|
|
|
|
2023-06-07 14:51:22 +00:00
|
|
|
#include "ratgdo_child.h"
|
2023-06-07 15:44:31 +00:00
|
|
|
#include "ratgdo_state.h"
|
|
|
|
|
2023-06-05 23:24:05 +00:00
|
|
|
#define CODE_LENGTH 19
|
|
|
|
|
2023-06-05 17:59:55 +00:00
|
|
|
namespace esphome {
|
|
|
|
namespace ratgdo {
|
|
|
|
|
2023-06-07 14:47:27 +00:00
|
|
|
// Forward declare RATGDOClient
|
|
|
|
class RATGDOClient;
|
|
|
|
|
2023-06-09 20:22:08 +00:00
|
|
|
struct cmd {
|
2023-06-09 20:06:51 +00:00
|
|
|
uint64_t fixed;
|
2023-06-09 20:22:52 +00:00
|
|
|
uint32_t data;
|
2023-06-09 20:26:45 +00:00
|
|
|
inline bool operator!=(cmd const& other) const
|
2023-06-09 20:22:52 +00:00
|
|
|
{
|
|
|
|
return (fixed != other.fixed || data != other.data);
|
2023-06-09 20:26:45 +00:00
|
|
|
}
|
2023-06-09 20:22:08 +00:00
|
|
|
};
|
2023-06-09 20:06:51 +00:00
|
|
|
|
2023-06-09 20:11:16 +00:00
|
|
|
typedef struct {
|
2023-06-09 20:20:01 +00:00
|
|
|
cmd REBOOT1;
|
|
|
|
cmd REBOOT2;
|
|
|
|
cmd REBOOT3;
|
|
|
|
cmd REBOOT4;
|
|
|
|
cmd REBOOT5;
|
|
|
|
cmd REBOOT6;
|
|
|
|
cmd DOOR1;
|
|
|
|
cmd DOOR2;
|
|
|
|
cmd LIGHT;
|
|
|
|
cmd LOCK;
|
|
|
|
} cmds;
|
|
|
|
|
|
|
|
const cmds Command = {
|
|
|
|
.REBOOT1 = (cmd) { 0x400000000, 0x0000618b },
|
|
|
|
.REBOOT2 = (cmd) { 0, 0x01009080 },
|
|
|
|
.REBOOT3 = (cmd) { 0, 0x0000b1a0 },
|
|
|
|
.REBOOT4 = (cmd) { 0, 0x01009080 },
|
|
|
|
.REBOOT5 = (cmd) { 0x300000000, 0x00008092 },
|
|
|
|
.REBOOT6 = (cmd) { 0x300000000, 0x00008092 },
|
|
|
|
.DOOR1 = (cmd) { 0x200000000, 0x01018280 },
|
|
|
|
.DOOR2 = (cmd) { 0x200000000, 0x01009280 },
|
|
|
|
.LIGHT = (cmd) { 0x200000000, 0x00009281 },
|
|
|
|
.LOCK = (cmd) { 0x0100000000, 0x0000728c },
|
2023-06-07 14:40:45 +00:00
|
|
|
};
|
2023-06-05 21:26:28 +00:00
|
|
|
struct RATGDOStore {
|
2023-06-05 23:07:10 +00:00
|
|
|
ISRInternalGPIOPin input_obst;
|
|
|
|
|
2023-06-05 22:44:24 +00:00
|
|
|
int obstructionLowCount = 0; // count obstruction low pulses
|
|
|
|
long lastObstructionHigh = 0; // count time between high pulses from the obst ISR
|
2023-06-05 21:26:28 +00:00
|
|
|
|
2023-06-05 21:26:33 +00:00
|
|
|
static void IRAM_ATTR isrObstruction(RATGDOStore* arg);
|
2023-06-05 21:26:28 +00:00
|
|
|
};
|
|
|
|
|
2023-06-07 21:05:46 +00:00
|
|
|
class RATGDOComponent : public uart::UARTDevice, public Component {
|
2023-06-05 18:56:03 +00:00
|
|
|
public:
|
|
|
|
void setup() override;
|
|
|
|
void loop() override;
|
2023-06-06 01:37:27 +00:00
|
|
|
void dump_config() override;
|
2023-06-09 22:36:56 +00:00
|
|
|
|
2023-06-06 01:57:12 +00:00
|
|
|
uint32_t rollingCodeCounter;
|
2023-06-09 22:36:56 +00:00
|
|
|
uint16_t previousOpenings { 0 }; // number of times the door has been opened
|
|
|
|
uint16_t openings; // number of times the door has been opened
|
|
|
|
|
2023-06-05 23:07:10 +00:00
|
|
|
uint8_t txRollingCode[CODE_LENGTH];
|
|
|
|
uint8_t rxRollingCode[CODE_LENGTH];
|
2023-06-05 18:56:03 +00:00
|
|
|
|
2023-06-07 23:59:49 +00:00
|
|
|
uint8_t previousDoorState { DoorState::DOOR_STATE_UNKNOWN };
|
|
|
|
uint8_t previousLightState { LightState::LIGHT_STATE_UNKNOWN };
|
|
|
|
uint8_t previousLockState { LockState::LOCK_STATE_UNKNOWN };
|
|
|
|
uint8_t previousObstructionState { ObstructionState::OBSTRUCTION_STATE_UNKNOWN };
|
2023-06-08 02:48:15 +00:00
|
|
|
uint8_t previousMotorState { MotorState::MOTOR_STATE_UNKNOWN };
|
2023-06-09 23:04:29 +00:00
|
|
|
uint8_t previousButtonState { ButtonState::BUTTON_STATE_UNKNOWN };
|
2023-06-07 23:59:49 +00:00
|
|
|
|
2023-06-08 00:20:32 +00:00
|
|
|
uint8_t obstructionState { ObstructionState::OBSTRUCTION_STATE_UNKNOWN };
|
|
|
|
uint8_t motionState { MotionState::MOTION_STATE_CLEAR };
|
2023-06-08 02:48:15 +00:00
|
|
|
uint8_t motorState { MotorState::MOTOR_STATE_UNKNOWN };
|
2023-06-08 00:20:32 +00:00
|
|
|
uint8_t lockState { LockState::LOCK_STATE_UNKNOWN };
|
|
|
|
uint8_t lightState { LightState::LIGHT_STATE_UNKNOWN };
|
|
|
|
uint8_t doorState { DoorState::DOOR_STATE_UNKNOWN };
|
2023-06-09 23:04:29 +00:00
|
|
|
uint8_t buttonState { ButtonState::BUTTON_STATE_UNKNOWN };
|
2023-06-08 00:20:32 +00:00
|
|
|
|
2023-06-05 19:40:53 +00:00
|
|
|
void set_output_gdo_pin(InternalGPIOPin* pin) { this->output_gdo_pin_ = pin; };
|
2023-06-05 23:19:52 +00:00
|
|
|
void set_input_gdo_pin(InternalGPIOPin* pin) { this->input_gdo_pin_ = pin; };
|
|
|
|
void set_input_obst_pin(InternalGPIOPin* pin) { this->input_obst_pin_ = pin; };
|
|
|
|
|
2023-06-05 18:56:03 +00:00
|
|
|
/********************************** FUNCTION DECLARATION
|
|
|
|
* *****************************************/
|
2023-06-09 20:20:01 +00:00
|
|
|
void transmit(cmd command);
|
2023-06-05 18:56:03 +00:00
|
|
|
void sync();
|
|
|
|
|
|
|
|
void obstructionLoop();
|
2023-06-05 23:29:16 +00:00
|
|
|
void sendObstructionStatus();
|
2023-06-05 18:56:03 +00:00
|
|
|
|
2023-06-09 22:36:56 +00:00
|
|
|
void sendOpenings();
|
|
|
|
|
2023-06-05 23:28:47 +00:00
|
|
|
void toggleDoor();
|
|
|
|
void openDoor();
|
|
|
|
void closeDoor();
|
|
|
|
void stopDoor();
|
2023-06-05 18:56:03 +00:00
|
|
|
void sendDoorStatus();
|
2023-06-05 23:28:47 +00:00
|
|
|
|
|
|
|
void toggleLight();
|
|
|
|
void lightOn();
|
|
|
|
void lightOff();
|
2023-06-08 01:46:44 +00:00
|
|
|
bool isLightOn();
|
2023-06-05 23:28:47 +00:00
|
|
|
void sendLightStatus();
|
|
|
|
|
|
|
|
void toggleLock();
|
|
|
|
void lock();
|
|
|
|
void unlock();
|
|
|
|
void sendLockStatus();
|
2023-06-09 23:04:29 +00:00
|
|
|
void sendButtonStatus();
|
2023-06-05 23:28:47 +00:00
|
|
|
void sendMotionStatus();
|
2023-06-08 02:40:07 +00:00
|
|
|
void sendMotorStatus();
|
2023-06-07 23:59:49 +00:00
|
|
|
void query();
|
2023-06-05 18:56:03 +00:00
|
|
|
void doorStateLoop();
|
2023-06-05 19:00:45 +00:00
|
|
|
void printRollingCode();
|
2023-06-09 20:20:01 +00:00
|
|
|
void getRollingCode(cmd command);
|
2023-06-05 23:25:36 +00:00
|
|
|
void gdoStateLoop();
|
2023-06-05 23:25:55 +00:00
|
|
|
void statusUpdateLoop();
|
2023-06-09 23:06:43 +00:00
|
|
|
void readRollingCode(
|
|
|
|
bool& isStatus,
|
|
|
|
uint8_t& door,
|
|
|
|
uint8_t& light,
|
|
|
|
uint8_t& lock,
|
|
|
|
uint8_t& motion,
|
|
|
|
uint8_t& obstruction,
|
|
|
|
uint8_t& motor,
|
|
|
|
uint16_t& openings,
|
|
|
|
uint8_t& button);
|
2023-06-07 22:59:56 +00:00
|
|
|
void incrementRollingCodeCounter();
|
2023-06-07 23:10:02 +00:00
|
|
|
void sendRollingCodeChanged();
|
|
|
|
void setRollingCodeCounter(uint32_t counter);
|
2023-06-09 20:20:01 +00:00
|
|
|
void sendCommandAndSaveCounter(cmd command);
|
2023-06-09 21:39:49 +00:00
|
|
|
LightState getLightState();
|
2023-06-07 14:45:49 +00:00
|
|
|
/** Register a child component. */
|
2023-06-07 14:47:27 +00:00
|
|
|
void register_child(RATGDOClient* obj);
|
2023-06-05 18:56:03 +00:00
|
|
|
|
|
|
|
protected:
|
|
|
|
ESPPreferenceObject pref_;
|
2023-06-07 14:51:53 +00:00
|
|
|
std::vector<RATGDOClient*> children_;
|
2023-06-08 01:40:38 +00:00
|
|
|
bool forceUpdate_ { false };
|
2023-06-05 21:26:33 +00:00
|
|
|
RATGDOStore store_ {};
|
2023-06-05 21:26:28 +00:00
|
|
|
|
2023-06-05 19:40:53 +00:00
|
|
|
InternalGPIOPin* output_gdo_pin_;
|
2023-06-05 23:07:10 +00:00
|
|
|
InternalGPIOPin* input_gdo_pin_;
|
|
|
|
InternalGPIOPin* input_obst_pin_;
|
|
|
|
|
2023-06-05 18:56:03 +00:00
|
|
|
}; // RATGDOComponent
|
2023-06-05 18:07:10 +00:00
|
|
|
|
|
|
|
} // namespace ratgdo
|
2023-06-07 21:06:11 +00:00
|
|
|
} // namespace esphome
|