mirror of
https://github.com/eried/portapack-mayhem.git
synced 2025-08-05 21:24:27 -04:00
SubghzD rework (#2210)
* Removed controller code * Add Legrand * Added Somify Keytis * Somify * better display
This commit is contained in:
parent
9211975868
commit
765e3be55b
37 changed files with 1008 additions and 275 deletions
|
@ -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;
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue