معرفی شرکت ها


epyper-0.1.0


Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر

توضیحات

Python driver for Embedded Artists 2.7 inch E-paper Display Module
ویژگی مقدار
سیستم عامل -
نام فایل epyper-0.1.0
نام epyper
نسخه کتابخانه 0.1.0
نگهدارنده []
ایمیل نگهدارنده []
نویسنده Michal Nowotka
ایمیل نویسنده mmmnow@gmail.com
آدرس صفحه اصلی https://github.com/mnowotka/epyper
آدرس اینترنتی https://pypi.org/project/epyper/
مجوز MIT
epyper ====== ![demo](https://raw.github.com/mnowotka/epyper/master/doc/demo.jpg) Python driver for Embedded Artists 2.7 inch E-paper Display Module: http://www.embeddedartists.com/products/displays/lcd_27_epaper.php. It's based on original C code available here: http://www.embeddedartists.com/sites/default/files/support/displays/epaper/epaper_pi_130307.tar.gz [![Downloads](https://pypip.in/v/epyper/badge.png)](https://pypi.python.org/pypi/epyper) Rationale -------- So you got your new shiny E-paper display from Embeded Artists. You plug it to your rPi to display some images. But how? Example C code is not very easy to adapt. All images included in C demo are written as byte tables in C header files. Function for displaying an image takes pointers to `int8_t`... In order to display new image you need to remember and old one. WTF!?!? You just wanted to display a png or jpg from your disk or web. And preferably do so in python. If that's your story then `epyper` is just for you. `Epyper` provides high level python interface for displaying images on e-paper. The most important class is `DisplayController`, which provides `displayImg` method accepting PIL `Image` to be displayed. The image needs to have proper size. It doesn't necessary needs to be black and white only - color images will be converted but the effect may be dissapointing so it's better to provide b&w or convert it before handing it to the `DisplayController`. Installation -------- The best way to install epyper is to use `PIP`: pip install epyper This command will install latest stable version with all dependencies. You can of course clone development version from github but it's not guaranteed to be working. How to use it? -------- #necessary imports first from PIL import Image from epyper.displayCOGProcess import Display from epyper.displayController import DisplayController #create DisplayController instance specifying display type as an argument display = DisplayController(Display.EPD_TYPE_270) #open some image im = Image.open("some_image.png") #display it! display.displayImg(im) Dependencies -------- * [WiringPi2-Python] (https://github.com/WiringPi/WiringPi2-Python) * [Pillow] (https://github.com/python-imaging/Pillow)


نحوه نصب


نصب پکیج whl epyper-0.1.0:

    pip install epyper-0.1.0.whl


نصب پکیج tar.gz epyper-0.1.0:

    pip install epyper-0.1.0.tar.gz