2018-08-18 21:40:59 +02:00
|
|
|
# coding=utf-8
|
|
|
|
import logging
|
|
|
|
|
2019-02-13 16:54:02 +01:00
|
|
|
from esphome import core
|
|
|
|
from esphome.components import display, font
|
|
|
|
import esphome.config_validation as cv
|
2019-04-17 12:06:00 +02:00
|
|
|
import esphome.codegen as cg
|
2019-02-13 16:54:02 +01:00
|
|
|
from esphome.const import CONF_FILE, CONF_ID, CONF_RESIZE
|
|
|
|
from esphome.core import CORE, HexInt
|
2018-08-18 21:40:59 +02:00
|
|
|
_LOGGER = logging.getLogger(__name__)
|
|
|
|
|
|
|
|
DEPENDENCIES = ['display']
|
2018-12-05 21:22:06 +01:00
|
|
|
MULTI_CONF = True
|
2018-08-18 21:40:59 +02:00
|
|
|
|
2018-11-12 23:30:31 +01:00
|
|
|
Image_ = display.display_ns.class_('Image')
|
2018-08-18 21:40:59 +02:00
|
|
|
|
|
|
|
CONF_RAW_DATA_ID = 'raw_data_id'
|
|
|
|
|
2019-02-26 19:22:33 +01:00
|
|
|
IMAGE_SCHEMA = cv.Schema({
|
2019-04-17 12:06:00 +02:00
|
|
|
cv.Required(CONF_ID): cv.declare_variable_id(Image_),
|
|
|
|
cv.Required(CONF_FILE): cv.file_,
|
|
|
|
cv.Optional(CONF_RESIZE): cv.dimensions,
|
|
|
|
cv.GenerateID(CONF_RAW_DATA_ID): cv.declare_variable_id(cg.uint8),
|
2018-08-18 21:40:59 +02:00
|
|
|
})
|
|
|
|
|
2019-04-17 12:06:00 +02:00
|
|
|
CONFIG_SCHEMA = cv.All(font.validate_pillow_installed, IMAGE_SCHEMA)
|
2018-08-18 21:40:59 +02:00
|
|
|
|
|
|
|
|
|
|
|
def to_code(config):
|
|
|
|
from PIL import Image
|
|
|
|
|
2018-12-05 21:22:06 +01:00
|
|
|
path = CORE.relative_path(config[CONF_FILE])
|
|
|
|
try:
|
|
|
|
image = Image.open(path)
|
|
|
|
except Exception as e:
|
2019-02-13 16:54:02 +01:00
|
|
|
raise core.EsphomeError(u"Could not load image file {}: {}".format(path, e))
|
2018-08-18 21:40:59 +02:00
|
|
|
|
2018-12-05 21:22:06 +01:00
|
|
|
if CONF_RESIZE in config:
|
|
|
|
image.thumbnail(config[CONF_RESIZE])
|
2018-08-18 21:40:59 +02:00
|
|
|
|
2018-12-05 21:22:06 +01:00
|
|
|
image = image.convert('1', dither=Image.NONE)
|
|
|
|
width, height = image.size
|
|
|
|
if width > 500 or height > 500:
|
|
|
|
_LOGGER.warning("The image you requested is very big. Please consider using the resize "
|
|
|
|
"parameter")
|
|
|
|
width8 = ((width + 7) // 8) * 8
|
|
|
|
data = [0 for _ in range(height * width8 // 8)]
|
|
|
|
for y in range(height):
|
|
|
|
for x in range(width):
|
|
|
|
if image.getpixel((x, y)):
|
|
|
|
continue
|
|
|
|
pos = x + y * width8
|
|
|
|
data[pos // 8] |= 0x80 >> (pos % 8)
|
2018-08-18 21:40:59 +02:00
|
|
|
|
2019-04-17 12:06:00 +02:00
|
|
|
rhs = [HexInt(x) for x in data]
|
|
|
|
prog_arr = cg.progmem_array(config[CONF_RAW_DATA_ID], rhs)
|
|
|
|
cg.new_Pvariable(config[CONF_ID], prog_arr, width, height)
|