mirror of
https://github.com/esphome/esphome.git
synced 2024-12-22 13:34:54 +01:00
Add int16 to codegen (#4507)
This commit is contained in:
parent
a428e2b689
commit
df3f13ded8
2 changed files with 2 additions and 0 deletions
|
@ -63,6 +63,7 @@ from esphome.cpp_types import ( # noqa
|
||||||
uint16,
|
uint16,
|
||||||
uint32,
|
uint32,
|
||||||
uint64,
|
uint64,
|
||||||
|
int16,
|
||||||
int32,
|
int32,
|
||||||
int64,
|
int64,
|
||||||
size_t,
|
size_t,
|
||||||
|
|
|
@ -14,6 +14,7 @@ uint8 = global_ns.namespace("uint8_t")
|
||||||
uint16 = global_ns.namespace("uint16_t")
|
uint16 = global_ns.namespace("uint16_t")
|
||||||
uint32 = global_ns.namespace("uint32_t")
|
uint32 = global_ns.namespace("uint32_t")
|
||||||
uint64 = global_ns.namespace("uint64_t")
|
uint64 = global_ns.namespace("uint64_t")
|
||||||
|
int16 = global_ns.namespace("int16_t")
|
||||||
int32 = global_ns.namespace("int32_t")
|
int32 = global_ns.namespace("int32_t")
|
||||||
int64 = global_ns.namespace("int64_t")
|
int64 = global_ns.namespace("int64_t")
|
||||||
size_t = global_ns.namespace("size_t")
|
size_t = global_ns.namespace("size_t")
|
||||||
|
|
Loading…
Reference in a new issue