ESPHome
2026.6.0-dev
Loading...
Searching...
No Matches
esphome
components
sml
constants.h
Go to the documentation of this file.
1
#pragma once
2
3
#include <array>
4
#include <cstdint>
5
6
namespace
esphome::sml
{
7
8
enum
SmlType
: uint8_t {
9
SML_OCTET
= 0,
10
SML_BOOL
= 4,
11
SML_INT
= 5,
12
SML_UINT
= 6,
13
SML_LIST
= 7,
14
SML_HEX
= 10,
15
SML_UNDEFINED
= 255
16
};
17
18
enum
SmlMessageType
: uint16_t {
SML_PUBLIC_OPEN_RES
= 0x0101,
SML_GET_LIST_RES
= 0x701 };
19
20
// masks with two-bit mapping 0x1b -> 0b01; 0x01 -> 0b10; 0x1a -> 0b11
21
const
uint16_t
START_MASK
= 0x55aa;
// 0x1b 1b 1b 1b 01 01 01 01
22
const
uint16_t
END_MASK
= 0x0157;
// 0x1b 1b 1b 1b 1a
23
24
constexpr
std::array<uint8_t, 8>
START_SEQ
= {0x1b, 0x1b, 0x1b, 0x1b, 0x01, 0x01, 0x01, 0x01};
25
26
}
// namespace esphome::sml
esphome::sml
Definition
constants.h:6
esphome::sml::START_MASK
const uint16_t START_MASK
Definition
constants.h:21
esphome::sml::START_SEQ
constexpr std::array< uint8_t, 8 > START_SEQ
Definition
constants.h:24
esphome::sml::SmlMessageType
SmlMessageType
Definition
constants.h:18
esphome::sml::SML_PUBLIC_OPEN_RES
@ SML_PUBLIC_OPEN_RES
Definition
constants.h:18
esphome::sml::SML_GET_LIST_RES
@ SML_GET_LIST_RES
Definition
constants.h:18
esphome::sml::SmlType
SmlType
Definition
constants.h:8
esphome::sml::SML_LIST
@ SML_LIST
Definition
constants.h:13
esphome::sml::SML_UNDEFINED
@ SML_UNDEFINED
Definition
constants.h:15
esphome::sml::SML_OCTET
@ SML_OCTET
Definition
constants.h:9
esphome::sml::SML_BOOL
@ SML_BOOL
Definition
constants.h:10
esphome::sml::SML_HEX
@ SML_HEX
Definition
constants.h:14
esphome::sml::SML_UINT
@ SML_UINT
Definition
constants.h:12
esphome::sml::SML_INT
@ SML_INT
Definition
constants.h:11
esphome::sml::END_MASK
const uint16_t END_MASK
Definition
constants.h:22
Generated by
1.12.0