mirror of
https://github.com/esphome/esphome.git
synced 2024-11-23 15:38:11 +01:00
clang tidy
This commit is contained in:
parent
5d287ebe34
commit
4c4bce2447
1 changed files with 2 additions and 2 deletions
|
@ -54,7 +54,7 @@ class WaveshareEPaper : public display::DisplayBuffer,
|
||||||
|
|
||||||
virtual int get_width_controller() { return this->get_width_internal(); };
|
virtual int get_width_controller() { return this->get_width_internal(); };
|
||||||
|
|
||||||
virtual uint32_t get_buffer_length_();
|
uint32_t get_buffer_length_();
|
||||||
uint32_t reset_duration_{200};
|
uint32_t reset_duration_{200};
|
||||||
|
|
||||||
// Return the list of colors supported by the device
|
// Return the list of colors supported by the device
|
||||||
|
@ -75,7 +75,7 @@ class WaveshareEPaper : public display::DisplayBuffer,
|
||||||
|
|
||||||
class WaveshareEPaperBWR : public WaveshareEPaper {
|
class WaveshareEPaperBWR : public WaveshareEPaper {
|
||||||
public:
|
public:
|
||||||
virtual std::vector<Color> get_supported_colors() override { return {display::COLOR_ON, Color(255, 0, 0, 0)}; }
|
std::vector<Color> get_supported_colors() override { return {display::COLOR_ON, Color(255, 0, 0, 0)}; }
|
||||||
};
|
};
|
||||||
|
|
||||||
enum WaveshareEPaperTypeAModel {
|
enum WaveshareEPaperTypeAModel {
|
||||||
|
|
Loading…
Reference in a new issue