SubghzD rework (#2210)

* Removed controller code

* Add Legrand

* Added Somify Keytis

* Somify

* better display
This commit is contained in:
Totoo 2024-07-29 07:47:50 +02:00 committed by GitHub
parent 9211975868
commit 765e3be55b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
37 changed files with 1008 additions and 275 deletions

View file

@ -1289,24 +1289,15 @@ class SubGhzDDataMessage : public Message {
public:
constexpr SubGhzDDataMessage(
uint8_t sensorType = 0,
uint8_t btn = 0xFF,
uint16_t bits = 0,
uint32_t serial = 0xFFFFFFFF,
uint64_t data = 0,
uint32_t cnt = 0xFF)
uint64_t data = 0)
: Message{ID::SubGhzDData},
sensorType{sensorType},
btn{btn},
bits{bits},
serial{serial},
cnt{cnt},
data{data} {
}
uint8_t sensorType = 0;
uint8_t btn = 0xFF;
uint16_t bits = 0;
uint32_t serial = 0xFFFFFFFF;
uint32_t cnt = 0xFF;
uint64_t data = 0;
};