Battery-Emulator/Software/src/battery/BMW-I3-HTML.h
2025-07-26 15:19:49 +03:00

20 lines
399 B
C++

#ifndef _BMW_I3_HTML_H
#define _BMW_I3_HTML_H
#include "../../src/devboard/webserver/BatteryHtmlRenderer.h"
#include "../datalayer/datalayer.h"
#include "../datalayer/datalayer_extended.h"
class BmwI3Battery;
class BmwI3HtmlRenderer : public BatteryHtmlRenderer {
private:
BmwI3Battery& batt;
public:
BmwI3HtmlRenderer(BmwI3Battery& b) : batt(b) {}
String get_status_html();
};
#endif