1
0
mirror of https://github.com/esphome/esphome.git synced 2025-09-02 11:22:24 +01:00

Add int16 to codegen (#4507)

This commit is contained in:
Jesse Hills
2023-03-04 20:19:51 +13:00
committed by GitHub
parent a428e2b689
commit df3f13ded8
2 changed files with 2 additions and 0 deletions

View File

@@ -63,6 +63,7 @@ from esphome.cpp_types import ( # noqa
uint16,
uint32,
uint64,
int16,
int32,
int64,
size_t,

View File

@@ -14,6 +14,7 @@ uint8 = global_ns.namespace("uint8_t")
uint16 = global_ns.namespace("uint16_t")
uint32 = global_ns.namespace("uint32_t")
uint64 = global_ns.namespace("uint64_t")
int16 = global_ns.namespace("int16_t")
int32 = global_ns.namespace("int32_t")
int64 = global_ns.namespace("int64_t")
size_t = global_ns.namespace("size_t")