mirror of
https://github.com/esphome/esphome.git
synced 2025-08-03 08:57:47 +00:00
lint
This commit is contained in:
parent
010dc35efc
commit
139ce4c655
@ -0,0 +1,52 @@
|
|||||||
|
#include "custom_api_device_component.h"
|
||||||
|
#include "esphome/core/log.h"
|
||||||
|
|
||||||
|
#ifdef USE_API
|
||||||
|
namespace esphome {
|
||||||
|
namespace custom_api_device_component {
|
||||||
|
|
||||||
|
static const char *const TAG = "custom_api";
|
||||||
|
|
||||||
|
void CustomAPIDeviceComponent::setup() {
|
||||||
|
// Register services using CustomAPIDevice
|
||||||
|
register_service(&CustomAPIDeviceComponent::on_test_service, "custom_test_service");
|
||||||
|
|
||||||
|
register_service(&CustomAPIDeviceComponent::on_service_with_args, "custom_service_with_args",
|
||||||
|
{"arg_string", "arg_int", "arg_bool", "arg_float"});
|
||||||
|
|
||||||
|
// Test array types
|
||||||
|
register_service(&CustomAPIDeviceComponent::on_service_with_arrays, "custom_service_with_arrays",
|
||||||
|
{"bool_array", "int_array", "float_array", "string_array"});
|
||||||
|
}
|
||||||
|
|
||||||
|
void CustomAPIDeviceComponent::on_test_service() { ESP_LOGI(TAG, "Custom test service called!"); }
|
||||||
|
|
||||||
|
void CustomAPIDeviceComponent::on_service_with_args(std::string arg_string, int32_t arg_int, bool arg_bool,
|
||||||
|
float arg_float) {
|
||||||
|
ESP_LOGI(TAG, "Custom service called with: %s, %d, %d, %.2f", arg_string.c_str(), arg_int, arg_bool, arg_float);
|
||||||
|
}
|
||||||
|
|
||||||
|
void CustomAPIDeviceComponent::on_service_with_arrays(std::vector<bool> bool_array, std::vector<int32_t> int_array,
|
||||||
|
std::vector<float> float_array,
|
||||||
|
std::vector<std::string> string_array) {
|
||||||
|
ESP_LOGI(TAG, "Array service called with %zu bools, %zu ints, %zu floats, %zu strings", bool_array.size(),
|
||||||
|
int_array.size(), float_array.size(), string_array.size());
|
||||||
|
|
||||||
|
// Log first element of each array if not empty
|
||||||
|
if (!bool_array.empty()) {
|
||||||
|
ESP_LOGI(TAG, "First bool: %d", bool_array[0]);
|
||||||
|
}
|
||||||
|
if (!int_array.empty()) {
|
||||||
|
ESP_LOGI(TAG, "First int: %d", int_array[0]);
|
||||||
|
}
|
||||||
|
if (!float_array.empty()) {
|
||||||
|
ESP_LOGI(TAG, "First float: %.2f", float_array[0]);
|
||||||
|
}
|
||||||
|
if (!string_array.empty()) {
|
||||||
|
ESP_LOGI(TAG, "First string: %s", string_array[0].c_str());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
} // namespace custom_api_device_component
|
||||||
|
} // namespace esphome
|
||||||
|
#endif // USE_API
|
@ -1,6 +1,9 @@
|
|||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include "esphome.h"
|
#include <string>
|
||||||
|
#include <vector>
|
||||||
|
#include "esphome/core/component.h"
|
||||||
|
#include "esphome/components/api/custom_api_device.h"
|
||||||
|
|
||||||
#ifdef USE_API
|
#ifdef USE_API
|
||||||
namespace esphome {
|
namespace esphome {
|
||||||
@ -10,44 +13,14 @@ using namespace api;
|
|||||||
|
|
||||||
class CustomAPIDeviceComponent : public Component, public CustomAPIDevice {
|
class CustomAPIDeviceComponent : public Component, public CustomAPIDevice {
|
||||||
public:
|
public:
|
||||||
void setup() override {
|
void setup() override;
|
||||||
// Register services using CustomAPIDevice
|
|
||||||
register_service(&CustomAPIDeviceComponent::on_test_service, "custom_test_service");
|
|
||||||
|
|
||||||
register_service(&CustomAPIDeviceComponent::on_service_with_args, "custom_service_with_args",
|
void on_test_service();
|
||||||
{"arg_string", "arg_int", "arg_bool", "arg_float"});
|
|
||||||
|
|
||||||
// Test array types
|
void on_service_with_args(std::string arg_string, int32_t arg_int, bool arg_bool, float arg_float);
|
||||||
register_service(&CustomAPIDeviceComponent::on_service_with_arrays, "custom_service_with_arrays",
|
|
||||||
{"bool_array", "int_array", "float_array", "string_array"});
|
|
||||||
}
|
|
||||||
|
|
||||||
void on_test_service() { ESP_LOGI("custom_api", "Custom test service called!"); }
|
|
||||||
|
|
||||||
void on_service_with_args(std::string arg_string, int32_t arg_int, bool arg_bool, float arg_float) {
|
|
||||||
ESP_LOGI("custom_api", "Custom service called with: %s, %d, %d, %.2f", arg_string.c_str(), arg_int, arg_bool,
|
|
||||||
arg_float);
|
|
||||||
}
|
|
||||||
|
|
||||||
void on_service_with_arrays(std::vector<bool> bool_array, std::vector<int32_t> int_array,
|
void on_service_with_arrays(std::vector<bool> bool_array, std::vector<int32_t> int_array,
|
||||||
std::vector<float> float_array, std::vector<std::string> string_array) {
|
std::vector<float> float_array, std::vector<std::string> string_array);
|
||||||
ESP_LOGI("custom_api", "Array service called with %zu bools, %zu ints, %zu floats, %zu strings", bool_array.size(),
|
|
||||||
int_array.size(), float_array.size(), string_array.size());
|
|
||||||
|
|
||||||
// Log first element of each array if not empty
|
|
||||||
if (!bool_array.empty()) {
|
|
||||||
ESP_LOGI("custom_api", "First bool: %d", bool_array[0]);
|
|
||||||
}
|
|
||||||
if (!int_array.empty()) {
|
|
||||||
ESP_LOGI("custom_api", "First int: %d", int_array[0]);
|
|
||||||
}
|
|
||||||
if (!float_array.empty()) {
|
|
||||||
ESP_LOGI("custom_api", "First float: %.2f", float_array[0]);
|
|
||||||
}
|
|
||||||
if (!string_array.empty()) {
|
|
||||||
ESP_LOGI("custom_api", "First string: %s", string_array[0].c_str());
|
|
||||||
}
|
|
||||||
}
|
|
||||||
};
|
};
|
||||||
|
|
||||||
} // namespace custom_api_device_component
|
} // namespace custom_api_device_component
|
||||||
|
Loading…
x
Reference in New Issue
Block a user