mirror of
https://github.com/esphome/esphome.git
synced 2024-12-02 11:44:13 +01:00
66761ff340
* Add serveral options for SSD1306 integration * Add SSD1305 support (SSD1305 is similar to SSD1306, it seems SSD1305 has brightness and color register but does not have charge pump) * Add some description when manipulating registers * Add flip, offset and invert option to get more compatibility with various display modules * Fix typo `setup_ssd1036' -> `setup_ssd1306' * Add SSD1306 brightness validation tip * Add more description, limit offset range * Changes according to linter * Fix test * Raise error instead of using warning * Fix wrong logic * Remove logger Co-authored-by: Jesse Hills <3060199+jesserockz@users.noreply.github.com> * Remove logging import Co-authored-by: Jesse Hills <3060199+jesserockz@users.noreply.github.com> Co-authored-by: Jesse Hills <3060199+jesserockz@users.noreply.github.com>
29 lines
882 B
Python
29 lines
882 B
Python
import esphome.codegen as cg
|
|
import esphome.config_validation as cv
|
|
from esphome.components import ssd1306_base, i2c
|
|
from esphome.components.ssd1306_base import _validate
|
|
from esphome.const import CONF_ID, CONF_LAMBDA, CONF_PAGES
|
|
|
|
AUTO_LOAD = ["ssd1306_base"]
|
|
DEPENDENCIES = ["i2c"]
|
|
|
|
ssd1306_i2c = cg.esphome_ns.namespace("ssd1306_i2c")
|
|
I2CSSD1306 = ssd1306_i2c.class_("I2CSSD1306", ssd1306_base.SSD1306, i2c.I2CDevice)
|
|
|
|
CONFIG_SCHEMA = cv.All(
|
|
ssd1306_base.SSD1306_SCHEMA.extend(
|
|
{
|
|
cv.GenerateID(): cv.declare_id(I2CSSD1306),
|
|
}
|
|
)
|
|
.extend(cv.COMPONENT_SCHEMA)
|
|
.extend(i2c.i2c_device_schema(0x3C)),
|
|
cv.has_at_most_one_key(CONF_PAGES, CONF_LAMBDA),
|
|
_validate,
|
|
)
|
|
|
|
|
|
async def to_code(config):
|
|
var = cg.new_Pvariable(config[CONF_ID])
|
|
await ssd1306_base.setup_ssd1306(var, config)
|
|
await i2c.register_i2c_device(var, config)
|