mirror of
https://github.com/Threnklyn/esphome-dev.git
synced 2026-06-07 05:13:31 +02:00
Activate some clang-tidy checks (#1884)
This commit is contained in:
@@ -31,13 +31,13 @@ struct ZaMessage {
|
||||
|
||||
class ZaDataProcessor {
|
||||
public:
|
||||
bool decode(unsigned long ms, bool data);
|
||||
bool decode(uint32_t ms, bool data);
|
||||
ZaMessage *message = new ZaMessage;
|
||||
|
||||
protected:
|
||||
uint8_t buffer_[ZA_MSG_LEN];
|
||||
int num_bits_ = 0;
|
||||
unsigned long prev_ms_;
|
||||
uint32_t prev_ms_;
|
||||
};
|
||||
|
||||
class ZaSensorStore {
|
||||
|
||||
Reference in New Issue
Block a user