We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b1c4d24 commit cf820d5Copy full SHA for cf820d5
setup.py
@@ -7,7 +7,7 @@
7
setup(
8
name='micropython-ssd1327',
9
py_modules=['ssd1327'],
10
- version='1.0.0',
+ version='1.1.0',
11
description='MicroPython library for SSD1327 based OLED displays.',
12
long_description='This library lets you update SSD1327 based 128x128 4-bit grayscale OLED displays.',
13
keywords='ssd1327 oled micropython',
ssd1327.py
@@ -24,6 +24,8 @@
24
SOFTWARE.
25
"""
26
27
+__version__ = '1.1.0'
28
+
29
from micropython import const
30
import time
31
import framebuf
0 commit comments