[hlk_fm22x] Reword comment to avoid lint false positive on 'byte'

This commit is contained in:
J. Nick Koston
2026-02-08 02:40:04 -06:00
parent 5374252470
commit eb3bad823b
+1 -1
View File
@@ -14,7 +14,7 @@ namespace esphome::hlk_fm22x {
static const uint16_t START_CODE = 0xEFAA;
static constexpr size_t HLK_FM22X_NAME_SIZE = 32;
// Maximum response payload: 1-byte command + 1-byte result + 2-byte face_id + 32-byte name = 36
// Maximum response payload: command(1) + result(1) + face_id(2) + name(32) = 36
static constexpr size_t HLK_FM22X_MAX_RESPONSE_SIZE = 36;
enum HlkFm22xCommand {
NONE = 0x00,