mirror of
https://github.com/esphome/esphome.git
synced 2024-12-02 03:34:18 +01:00
17 lines
239 B
C++
17 lines
239 B
C++
#pragma once
|
|
|
|
#ifdef USE_ESP32
|
|
|
|
#include "esphome/core/component.h"
|
|
|
|
namespace esphome {
|
|
namespace psram {
|
|
|
|
class PsramComponent : public Component {
|
|
void dump_config() override;
|
|
};
|
|
|
|
} // namespace psram
|
|
} // namespace esphome
|
|
|
|
#endif
|