{ "info": { "author": "SiYu Wu", "author_email": "wu.siyu@hotmail.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 3 - Alpha", "License :: OSI Approved :: MIT License", "Programming Language :: Python :: 3 :: Only" ], "description": "# Python I2CLCD module\n\nPython I2CLCD module for LCD1602/2002/2004 screen with I2C adapter \nCan be used on embedded devices like the Raspberry Pi\n\n## Features\n\n- Implemented most of the built-in instructions of LCD1602/2002/2004\n- Support for custom characters\n- Support backlight settings\n- Support 'Cursor or Display Shift' instructions\n- Hints for each method\n\n## Quick start\n\n```python\nimport i2clcd\n\nlcd = i2clcd.i2clcd(i2c_bus=1, i2c_addr=0x27, lcd_width=16)\nlcd.init()\n\n# fill a line by the text\nlcd.print_line('hello', line=0)\nlcd.print_line('world!', line=1, align='RIGHT')\n\n# print text at the current cursor position\nlcd.move_cursor(1, 0)\nlcd.print('the')\n\n# custom character\nchar_celsius = (0x10, 0x06, 0x09, 0x08, 0x08, 0x09, 0x06, 0x00)\nlcd.write_CGRAM(char_celsius, 0)\nlcd.move_cursor(0, 6)\nlcd.print(b'CGRAM: ' + i2clcd.CGRAM_CHR[0])\n```\n![A photo for the result](https://i.loli.net/2019/07/17/5d2e027e2cbb890498.jpg)\n\n\n", "description_content_type": "text/markdown", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/WuSiYu/python-i2clcd", "keywords": "", "license": "", "maintainer": "", "maintainer_email": "", "name": "i2clcd", "package_url": "https://pypi.org/project/i2clcd/", "platform": "", "project_url": "https://pypi.org/project/i2clcd/", "project_urls": { "Homepage": "https://github.com/WuSiYu/python-i2clcd" }, "release_url": "https://pypi.org/project/i2clcd/0.0.1/", "requires_dist": null, "requires_python": "", "summary": "driver for LCD1602/2002/2004 with I2C adapter, for Raspberry Pi or other device", "version": "0.0.1" }, "last_serial": 5541703, "releases": { "0.0.1": [ { "comment_text": "", "digests": { "md5": "355023fb9cd03c286575a996ecf14918", "sha256": "f1ad7cb9a9478a659daf6b7e042825996dd8eac76f3233de5be517f4a59f7829" }, "downloads": -1, "filename": "i2clcd-0.0.1-py3-none-any.whl", "has_sig": false, "md5_digest": "355023fb9cd03c286575a996ecf14918", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 4708, "upload_time": "2019-07-16T17:08:34", "url": "https://files.pythonhosted.org/packages/16/d8/8a683768270beffbfae2d896f770e41c132cec68848ad346ea32432054cb/i2clcd-0.0.1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "d8ee4b2000bcb5a463c857eefa988fc1", "sha256": "76f383e13984f8492be5a8db5a14d16f8dc3f87a8636771b50e035c81fb29bbc" }, "downloads": -1, "filename": "i2clcd-0.0.1.tar.gz", "has_sig": false, "md5_digest": "d8ee4b2000bcb5a463c857eefa988fc1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3567, "upload_time": "2019-07-16T17:08:37", "url": "https://files.pythonhosted.org/packages/3d/f5/f8f8386e72a793ec31e462759cd73da1282bd4161737fe9c2ba6e3dc22ba/i2clcd-0.0.1.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "355023fb9cd03c286575a996ecf14918", "sha256": "f1ad7cb9a9478a659daf6b7e042825996dd8eac76f3233de5be517f4a59f7829" }, "downloads": -1, "filename": "i2clcd-0.0.1-py3-none-any.whl", "has_sig": false, "md5_digest": "355023fb9cd03c286575a996ecf14918", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 4708, "upload_time": "2019-07-16T17:08:34", "url": "https://files.pythonhosted.org/packages/16/d8/8a683768270beffbfae2d896f770e41c132cec68848ad346ea32432054cb/i2clcd-0.0.1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "d8ee4b2000bcb5a463c857eefa988fc1", "sha256": "76f383e13984f8492be5a8db5a14d16f8dc3f87a8636771b50e035c81fb29bbc" }, "downloads": -1, "filename": "i2clcd-0.0.1.tar.gz", "has_sig": false, "md5_digest": "d8ee4b2000bcb5a463c857eefa988fc1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3567, "upload_time": "2019-07-16T17:08:37", "url": "https://files.pythonhosted.org/packages/3d/f5/f8f8386e72a793ec31e462759cd73da1282bd4161737fe9c2ba6e3dc22ba/i2clcd-0.0.1.tar.gz" } ] }