1
0
mirror of https://github.com/esphome/esphome.git synced 2025-09-05 12:52:19 +01:00
Files
esphome/esphome/components/shell/shell.h
Tomasz Duda 52cf8a1cf5 add zephyr
2024-02-02 00:58:34 +01:00

11 lines
152 B
C++

#pragma once
#include "esphome/core/component.h"
namespace esphome {
namespace shell {
class Shell : public Component {
void setup() override;
};
}
}