Compare commits

...

4 commits

Author SHA1 Message Date
Limor "Ladyada" Fried
dfa8717cb7
Update README.md 2019-09-27 14:35:37 -04:00
Limor "Ladyada" Fried
9176d2452c
Merge pull request #28 from abhinuvpitale/patch-1
Update SSD1306.py
2019-06-23 15:43:50 -04:00
Abhinuv Nitin Pitale
eab5947a99
Update SSD1306.py 2018-09-18 16:22:37 -07:00
Brennen Bearnes
8819e2d203 bump version to 1.6.2 2018-05-30 14:54:07 -06:00
3 changed files with 11 additions and 3 deletions

View file

@ -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,

View file

@ -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

View file

@ -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.',