ESPHome 2025.9.0-dev
Loading...
Searching...
No Matches
pcf8574_display.cpp
Go to the documentation of this file.
1#include "pcf8574_display.h"
2#include "esphome/core/log.h"
3#include "esphome/core/hal.h"
4
5namespace esphome {
6namespace lcd_pcf8574 {
7
8static const char *const TAG = "lcd_pcf8574";
9
10static const uint8_t LCD_DISPLAY_BACKLIGHT_ON = 0x08;
11static const uint8_t LCD_DISPLAY_BACKLIGHT_OFF = 0x00;
12
14 this->backlight_value_ = LCD_DISPLAY_BACKLIGHT_ON;
15 if (!this->write_bytes(this->backlight_value_, nullptr, 0)) {
16 this->mark_failed();
17 return;
18 }
19
20 LCDDisplay::setup();
21}
23 ESP_LOGCONFIG(TAG,
24 "PCF8574 LCD Display:\n"
25 " Columns: %u, Rows: %u",
26 this->columns_, this->rows_);
27 LOG_I2C_DEVICE(this);
28 LOG_UPDATE_INTERVAL(this);
29 if (this->is_failed()) {
30 ESP_LOGE(TAG, ESP_LOG_MSG_COMM_FAIL);
31 }
32}
33void PCF8574LCDDisplay::write_n_bits(uint8_t value, uint8_t n) {
34 if (n == 4) {
35 // Ugly fix: in the super setup() with n == 4 value needs to be shifted left
36 value <<= 4;
37 }
38 uint8_t data = value | this->backlight_value_; // Set backlight state
39 this->write_bytes(data, nullptr, 0);
40 // Pulse ENABLE
41 this->write_bytes(data | 0x04, nullptr, 0);
42 delayMicroseconds(1); // >450ns
43 this->write_bytes(data, nullptr, 0);
44 delayMicroseconds(100); // >37us
45}
46void PCF8574LCDDisplay::send(uint8_t value, bool rs) {
47 this->write_n_bits((value & 0xF0) | rs, 0);
48 this->write_n_bits(((value << 4) & 0xF0) | rs, 0);
49}
51 this->backlight_value_ = LCD_DISPLAY_BACKLIGHT_ON;
52 this->write_bytes(this->backlight_value_, nullptr, 0);
53}
55 this->backlight_value_ = LCD_DISPLAY_BACKLIGHT_OFF;
56 this->write_bytes(this->backlight_value_, nullptr, 0);
57}
58
59} // namespace lcd_pcf8574
60} // namespace esphome
virtual void mark_failed()
Mark this component as failed.
bool is_failed() const
bool write_bytes(uint8_t a_register, const uint8_t *data, uint8_t len, bool stop=true)
Definition i2c.h:252
void send(uint8_t value, bool rs) override
void write_n_bits(uint8_t value, uint8_t n) override
Providing packet encoding functions for exchanging data with a remote host.
Definition a01nyub.cpp:7
void IRAM_ATTR HOT delayMicroseconds(uint32_t us)
Definition core.cpp:31