Skip to content

Commit 82ce2b2

Browse files
authored
Merge pull request #26 from makermelissa/master
Added version and Repo URL
2 parents 5385963 + f78e77a commit 82ce2b2

File tree

7 files changed

+21
-0
lines changed

7 files changed

+21
-0
lines changed

adafruit_epd/epd.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,9 @@
3131
from digitalio import Direction
3232
from adafruit_epd import mcp_sram
3333

34+
__version__ = "0.0.0-auto.0"
35+
__repo__ = "https://github.com/adafruit/Adafruit_CircuitPython_EPD.git"
36+
3437
class Adafruit_EPD: # pylint: disable=too-many-instance-attributes, too-many-public-methods
3538
"""Base class for EPD displays
3639
"""

adafruit_epd/il0373.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,9 @@
3131
import adafruit_framebuf
3232
from adafruit_epd.epd import Adafruit_EPD
3333

34+
__version__ = "0.0.0-auto.0"
35+
__repo__ = "https://github.com/adafruit/Adafruit_CircuitPython_EPD.git"
36+
3437
_IL0373_PANEL_SETTING = const(0x00)
3538
_IL0373_POWER_SETTING = const(0x01)
3639
_IL0373_POWER_OFF = const(0x02)

adafruit_epd/il0398.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,9 @@
3131
import adafruit_framebuf
3232
from adafruit_epd.epd import Adafruit_EPD
3333

34+
__version__ = "0.0.0-auto.0"
35+
__repo__ = "https://github.com/adafruit/Adafruit_CircuitPython_EPD.git"
36+
3437
_IL0398_PANEL_SETTING = const(0x00)
3538
_IL0398_POWER_SETTING = const(0x01)
3639
_IL0398_POWER_OFF = const(0x02)

adafruit_epd/il91874.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,9 @@
3131
import adafruit_framebuf
3232
from adafruit_epd.epd import Adafruit_EPD
3333

34+
__version__ = "0.0.0-auto.0"
35+
__repo__ = "https://github.com/adafruit/Adafruit_CircuitPython_EPD.git"
36+
3437
_IL91874_PANEL_SETTING = const(0x00)
3538
_IL91874_POWER_SETTING = const(0x01)
3639
_IL91874_POWER_OFF = const(0x02)

adafruit_epd/mcp_sram.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,9 @@
2929
from micropython import const
3030
from adafruit_bus_device import spi_device
3131

32+
__version__ = "0.0.0-auto.0"
33+
__repo__ = "https://github.com/adafruit/Adafruit_CircuitPython_EPD.git"
34+
3235
SRAM_SEQUENTIAL_MODE = const(1 << 6)
3336

3437
class Adafruit_MCP_SRAM_View:

adafruit_epd/ssd1608.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,9 @@
3131
import adafruit_framebuf
3232
from adafruit_epd.epd import Adafruit_EPD
3333

34+
__version__ = "0.0.0-auto.0"
35+
__repo__ = "https://github.com/adafruit/Adafruit_CircuitPython_EPD.git"
36+
3437
_SSD1608_DRIVER_CONTROL = const(0x01)
3538
_SSD1608_GATE_VOLTAGE = const(0x03)
3639
_SSD1608_SOURCE_VOLTAGE = const(0x04)

adafruit_epd/ssd1675.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,9 @@
3131
import adafruit_framebuf
3232
from adafruit_epd.epd import Adafruit_EPD
3333

34+
__version__ = "0.0.0-auto.0"
35+
__repo__ = "https://github.com/adafruit/Adafruit_CircuitPython_EPD.git"
36+
3437
_SSD1675_DRIVER_CONTROL = const(0x01)
3538
_SSD1675_GATE_VOLTAGE = const(0x03)
3639
_SSD1675_SOURCE_VOLTAGE = const(0x04)

0 commit comments

Comments
 (0)