ESPHome  2024.9.0
improv_base.h
Go to the documentation of this file.
1 #pragma once
2 
3 #include <string>
4 
5 namespace esphome {
6 namespace improv_base {
7 
8 class ImprovBase {
9  public:
10  void set_next_url(const std::string &next_url) { this->next_url_ = next_url; }
11 
12  protected:
13  std::string get_formatted_next_url_();
14  std::string next_url_;
15 };
16 
17 } // namespace improv_base
18 } // namespace esphome
Implementation of SPI Controller mode.
Definition: a01nyub.cpp:7
void set_next_url(const std::string &next_url)
Definition: improv_base.h:10