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

[opentherm] Rename c++ files for predictable doxygen generation (#10314)

This commit is contained in:
Jesse Hills
2025-08-21 18:48:48 +12:00
committed by GitHub
parent 33eddb6035
commit 3ca0015284
7 changed files with 9 additions and 9 deletions

View File

@@ -1,10 +1,10 @@
#pragma once #pragma once
#include <vector>
#include "esphome/core/component.h"
#include "esphome/core/defines.h" #include "esphome/core/defines.h"
#include "esphome/core/hal.h" #include "esphome/core/hal.h"
#include "esphome/core/component.h"
#include "esphome/core/log.h" #include "esphome/core/log.h"
#include <vector>
#include "opentherm.h" #include "opentherm.h"
@@ -17,21 +17,21 @@
#endif #endif
#ifdef OPENTHERM_USE_SWITCH #ifdef OPENTHERM_USE_SWITCH
#include "esphome/components/opentherm/switch/switch.h" #include "esphome/components/opentherm/switch/opentherm_switch.h"
#endif #endif
#ifdef OPENTHERM_USE_OUTPUT #ifdef OPENTHERM_USE_OUTPUT
#include "esphome/components/opentherm/output/output.h" #include "esphome/components/opentherm/output/opentherm_output.h"
#endif #endif
#ifdef OPENTHERM_USE_NUMBER #ifdef OPENTHERM_USE_NUMBER
#include "esphome/components/opentherm/number/number.h" #include "esphome/components/opentherm/number/opentherm_number.h"
#endif #endif
#include <functional>
#include <memory> #include <memory>
#include <unordered_map> #include <unordered_map>
#include <unordered_set> #include <unordered_set>
#include <functional>
#include "opentherm_macros.h" #include "opentherm_macros.h"

View File

@@ -1,4 +1,4 @@
#include "number.h" #include "opentherm_number.h"
namespace esphome { namespace esphome {
namespace opentherm { namespace opentherm {

View File

@@ -1,5 +1,5 @@
#include "esphome/core/helpers.h" // for clamp() and lerp() #include "esphome/core/helpers.h" // for clamp() and lerp()
#include "output.h" #include "opentherm_output.h"
namespace esphome { namespace esphome {
namespace opentherm { namespace opentherm {

View File

@@ -1,4 +1,4 @@
#include "switch.h" #include "opentherm_switch.h"
namespace esphome { namespace esphome {
namespace opentherm { namespace opentherm {