diff --git a/esphome/components/api/api_pb2_service.cpp b/esphome/components/api/api_pb2_service.cpp index 234b96e4d0..605189bd69 100644 --- a/esphome/components/api/api_pb2_service.cpp +++ b/esphome/components/api/api_pb2_service.cpp @@ -210,7 +210,6 @@ bool APIServerConnectionBase::send_list_entities_services_response(const ListEnt #endif return this->send_message_(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_(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 diff --git a/esphome/components/camera/__init__.py b/esphome/components/camera/__init__.py index 7c887793e3..268594e49e 100644 --- a/esphome/components/camera/__init__.py +++ b/esphome/components/camera/__init__.py @@ -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")