mirror of
https://github.com/esphome/esphome.git
synced 2024-11-15 03:28:12 +01:00
Fixed generated protobuf file.
This commit is contained in:
parent
0692d43b1c
commit
5fe02147b3
2 changed files with 5 additions and 1 deletions
|
@ -210,7 +210,6 @@ bool APIServerConnectionBase::send_list_entities_services_response(const ListEnt
|
|||
#endif
|
||||
return this->send_message_<ListEntitiesServicesResponse>(msg, 41);
|
||||
}
|
||||
|
||||
#ifdef USE_CAMERA
|
||||
bool APIServerConnectionBase::send_list_entities_camera_response(const ListEntitiesCameraResponse &msg) {
|
||||
#ifdef HAS_PROTO_MESSAGE_DUMP
|
||||
|
@ -227,6 +226,8 @@ bool APIServerConnectionBase::send_camera_image_response(const CameraImageRespon
|
|||
return this->send_message_<CameraImageResponse>(msg, 44);
|
||||
}
|
||||
#endif
|
||||
#ifdef USE_CAMERA
|
||||
#endif
|
||||
#ifdef USE_CLIMATE
|
||||
bool APIServerConnectionBase::send_list_entities_climate_response(const ListEntitiesClimateResponse &msg) {
|
||||
#ifdef HAS_PROTO_MESSAGE_DUMP
|
||||
|
|
|
@ -1,7 +1,10 @@
|
|||
import esphome.codegen as cg
|
||||
import esphome.config_validation as cv
|
||||
|
||||
CODEOWNERS = ["@DT-art1"]
|
||||
|
||||
CONFIG_SCHEMA = cv.Schema({})
|
||||
|
||||
|
||||
async def to_code(config):
|
||||
cg.add_define("USE_CAMERA")
|
||||
|
|
Loading…
Reference in a new issue