mirror of
https://github.com/esphome/esphome.git
synced 2024-11-15 10:35:51 +01:00
18 lines
239 B
C++
18 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
|