klausahrenberg / WThermostatBeca

Replaces original Tuya firmware on Beca thermostat with ESP8266 wifi module
397 stars 97 forks source link

ME81h DP 0x2d & 0x24 #264

Open danilkorotkov opened 2 years ago

danilkorotkov commented 2 years ago

add DP tracking: // RX: 55 aa 03 07 00 05 24 04 00 01 01 crc38 00 - relay ON 01 - relay OFF

// RX: 55 aa 03 07 00 05 0x2d 0x05 0x00 0x01 0x00 crc41 00 - ok 01 internal sensor broken 02 external sensor broken

    CHANGE_TYPE_POWER         = 0x01, //on/off
    CHANGE_TYPE_MODE          = 0x02, //manual/auto
    CHANGE_TYPE_FREEZE        = 0x0a, //freeze on off
    CHANGE_TYPE_SETPOINT_TEMP = 0x10, //target temp
    CHANGE_TYPE_UPPER_LIMIT   = 0x13, //upper limit temp
    CHANGE_TYPE_INTERNAL_TEMP = 0x18, //actual temp
    CHANGE_TYPE_LOWER_LIMIT   = 0x1a, //lower limit temp
    CHANGE_TYPE_CORRECTION    = 0x1b, //sensor correction
    CHANGE_TYPE_RELAY         = 0x24, //relay status 
    CHANGE_TYPE_LOCK          = 0x28, //lock physical keypad
    CHANGE_TYPE_SCHEDULE      = 0x26,
    CHANGE_TYPE_SENSOR        = 0x2b, // int 0. ext 1. both 2
    CHANGE_TYPE_SENSOR_ERROR  = 0x2d, // NTC ERROR
    CHANGE_TYPE_DIFF          = 0x65, // hysteresis
    CHANGE_TYPE_P_MODE        = 0x66, //programm mode
c0ldtech commented 2 years ago

Sorry for hijacking this, but does the ME81H work already? I only found something regarding the ME81AH. If it does work, since which firmware release? I'm using 1.19beta on all my other thermostats and had issues with the newer firmwares, so I'd like to stick to 1.19...

ikke-t commented 2 years ago

Seems to be related to #179 which has been open for long. I just got the device, and was wondering how to switch between the sensors. I believe all such int/ext sensor settings are not implemented.

ikke-t commented 2 years ago

Sorry I was wrong. It seems there is some code for changing the sensors, just haven't figured yet out how 😀