Skip to content

Commit

Permalink
Merge pull request #26 from makermelissa/master
Browse files Browse the repository at this point in the history
Added version and Repo URL
  • Loading branch information
ladyada committed Sep 6, 2019
2 parents 5385963 + f78e77a commit 82ce2b2
Show file tree
Hide file tree
Showing 7 changed files with 21 additions and 0 deletions.
3 changes: 3 additions & 0 deletions adafruit_epd/epd.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,9 @@
from digitalio import Direction
from adafruit_epd import mcp_sram

__version__ = "0.0.0-auto.0"
__repo__ = "https://github.com/adafruit/Adafruit_CircuitPython_EPD.git"

class Adafruit_EPD: # pylint: disable=too-many-instance-attributes, too-many-public-methods
"""Base class for EPD displays
"""
Expand Down
3 changes: 3 additions & 0 deletions adafruit_epd/il0373.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,9 @@
import adafruit_framebuf
from adafruit_epd.epd import Adafruit_EPD

__version__ = "0.0.0-auto.0"
__repo__ = "https://github.com/adafruit/Adafruit_CircuitPython_EPD.git"

_IL0373_PANEL_SETTING = const(0x00)
_IL0373_POWER_SETTING = const(0x01)
_IL0373_POWER_OFF = const(0x02)
Expand Down
3 changes: 3 additions & 0 deletions adafruit_epd/il0398.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,9 @@
import adafruit_framebuf
from adafruit_epd.epd import Adafruit_EPD

__version__ = "0.0.0-auto.0"
__repo__ = "https://github.com/adafruit/Adafruit_CircuitPython_EPD.git"

_IL0398_PANEL_SETTING = const(0x00)
_IL0398_POWER_SETTING = const(0x01)
_IL0398_POWER_OFF = const(0x02)
Expand Down
3 changes: 3 additions & 0 deletions adafruit_epd/il91874.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,9 @@
import adafruit_framebuf
from adafruit_epd.epd import Adafruit_EPD

__version__ = "0.0.0-auto.0"
__repo__ = "https://github.com/adafruit/Adafruit_CircuitPython_EPD.git"

_IL91874_PANEL_SETTING = const(0x00)
_IL91874_POWER_SETTING = const(0x01)
_IL91874_POWER_OFF = const(0x02)
Expand Down
3 changes: 3 additions & 0 deletions adafruit_epd/mcp_sram.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,9 @@
from micropython import const
from adafruit_bus_device import spi_device

__version__ = "0.0.0-auto.0"
__repo__ = "https://github.com/adafruit/Adafruit_CircuitPython_EPD.git"

SRAM_SEQUENTIAL_MODE = const(1 << 6)

class Adafruit_MCP_SRAM_View:
Expand Down
3 changes: 3 additions & 0 deletions adafruit_epd/ssd1608.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,9 @@
import adafruit_framebuf
from adafruit_epd.epd import Adafruit_EPD

__version__ = "0.0.0-auto.0"
__repo__ = "https://github.com/adafruit/Adafruit_CircuitPython_EPD.git"

_SSD1608_DRIVER_CONTROL = const(0x01)
_SSD1608_GATE_VOLTAGE = const(0x03)
_SSD1608_SOURCE_VOLTAGE = const(0x04)
Expand Down
3 changes: 3 additions & 0 deletions adafruit_epd/ssd1675.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,9 @@
import adafruit_framebuf
from adafruit_epd.epd import Adafruit_EPD

__version__ = "0.0.0-auto.0"
__repo__ = "https://github.com/adafruit/Adafruit_CircuitPython_EPD.git"

_SSD1675_DRIVER_CONTROL = const(0x01)
_SSD1675_GATE_VOLTAGE = const(0x03)
_SSD1675_SOURCE_VOLTAGE = const(0x04)
Expand Down

0 comments on commit 82ce2b2

Please sign in to comment.