ESPHome 2026.5.1
Loading...
Searching...
No Matches
ssd1327_i2c.h
Go to the documentation of this file.
1#pragma once
2
6
7namespace esphome::ssd1327_i2c {
8
10 public:
11 void setup() override;
12 void dump_config() override;
13
14 protected:
15 void command(uint8_t value) override;
16 void write_display_data() override;
17
18 enum ErrorCode { NONE = 0, COMMUNICATION_FAILED } error_code_{NONE};
19};
20
21} // namespace esphome::ssd1327_i2c
This Class provides the methods to read/write bytes from/to an i2c device.
Definition i2c.h:132
enum esphome::ssd1327_i2c::I2CSSD1327::ErrorCode NONE
void command(uint8_t value) override