Compare commits
4 commits
update_ez_
...
master
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
dfa8717cb7 | ||
|
|
9176d2452c | ||
|
|
eab5947a99 | ||
|
|
8819e2d203 |
3 changed files with 11 additions and 3 deletions
|
|
@ -232,7 +232,7 @@ class SSD1306Base(object):
|
|||
contrast = 0x9F
|
||||
else:
|
||||
contrast = 0xCF
|
||||
|
||||
self.set_contrast(contrast)
|
||||
|
||||
class SSD1306_128_64(SSD1306Base):
|
||||
def __init__(self, rst, dc=None, sclk=None, din=None, cs=None, gpio=None,
|
||||
|
|
|
|||
10
README.md
10
README.md
|
|
@ -1,6 +1,14 @@
|
|||
Adafruit Python SSD1306
|
||||
*DEPRECATED LIBRARY* Adafruit Python SSD1306
|
||||
=======================
|
||||
|
||||
his library has been deprecated! We are leaving this up for historical and research purposes but archiving the repository.
|
||||
|
||||
We are now only supporting the use of our CircuitPython libraries for use with Python.
|
||||
|
||||
Check out this guide for info on using OLEDs with the CircuitPython library: https://learn.adafruit.com/monochrome-oled-breakouts/python-wiring
|
||||
|
||||
---------------------------------------
|
||||
|
||||
Python library to use SSD1306-based 128x64 or 128x32 pixel OLED displays with a Raspberry Pi or Beaglebone Black.
|
||||
|
||||
Designed specifically to work with the Adafruit SSD1306-based OLED displays ----> https://www.adafruit.com/categories/98
|
||||
|
|
|
|||
2
setup.py
2
setup.py
|
|
@ -18,7 +18,7 @@ classifiers = ['Development Status :: 4 - Beta',
|
|||
'Topic :: System :: Hardware']
|
||||
|
||||
setup(name = 'Adafruit_SSD1306',
|
||||
version = '1.6.1',
|
||||
version = '1.6.2',
|
||||
author = 'Tony DiCola',
|
||||
author_email = 'tdicola@adafruit.com',
|
||||
description = 'Python library to use SSD1306-based 128x64 or 128x32 pixel OLED displays with a Raspberry Pi or Beaglebone Black.',
|
||||
|
|
|
|||
Loading…
Reference in a new issue