From 95836d552bbf6a1c9198c6635fe665e4c8602011 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bartosz=20Ko=C5=9Bci=C3=B3w?= Date: Tue, 30 May 2017 19:42:24 +0200 Subject: [PATCH] docs --- gfxlcd/driver/null/area_driver.py | 2 +- gfxlcd/driver/null/null_area.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/gfxlcd/driver/null/area_driver.py b/gfxlcd/driver/null/area_driver.py index 3747718..a27be79 100644 --- a/gfxlcd/driver/null/area_driver.py +++ b/gfxlcd/driver/null/area_driver.py @@ -4,7 +4,7 @@ from gfxlcd.abstract.driver import Driver class AreaDriver(Driver): - """SPI communication driver""" + """Null communication driver""" def __init__(self, width, height): self.height = height self.width = width diff --git a/gfxlcd/driver/null/null_area.py b/gfxlcd/driver/null/null_area.py index 056a9c0..dfd1ca6 100644 --- a/gfxlcd/driver/null/null_area.py +++ b/gfxlcd/driver/null/null_area.py @@ -11,11 +11,11 @@ class NullArea(Area, Chip): self.rotation = 0 def _converted_background_color(self): - """color from 8-8-8 to 5-6-5""" + """dummy background color""" return 2 def _converted_color(self): - """color from 8-8-8 to 5-6-5""" + """dummy color""" return 1 def init(self):