micropython-ft6x36


Namemicropython-ft6x36 JSON
Version 0.2.0 PyPI version JSON
download
home_pageNone
SummaryFocalTech FT6X36 touch panel driver.
upload_time2024-06-15 16:22:35
maintainerNone
docs_urlNone
authorNone
requires_pythonNone
licenseMIT
keywords micropython ft6x36 ft6236 ft6336 ft6436l ft6436 focaltech systems
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # FT6X36 (FT6236/FT6336/FT6436L/FT6436)

This is a micropython module for self-capacitive touch panel controllers produced by FocalTech Systems.

## Feature

- Support rotation
- Support two-point touch

## Install

open a MicroPython REPL and execute these commands inside the REPL

```python
import machine
import network
import time
import mip
station = network.WLAN(network.STA_IF)
station.active(True)
station.connect('SSID', 'PASSWORD')
time.sleep(1)
print('Device connected to network: {}'.format(station.isconnected()))
# latest
mip.install("github:lbuque/micropython-ft6x36/ft6x36/ft6x36.py", target="lib")
# or mpy
mip.install("ft6x36", index="https://lbuque.github.io/micropython-ft6x36/mip/0.2.0")
print('Installation completed')
machine.soft_reset()
```

## Thank

Part of the code is from [FT6336U-](https://github.com/vae-V/FT6336U-.git).

            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "micropython-ft6x36",
    "maintainer": null,
    "docs_url": null,
    "requires_python": null,
    "maintainer_email": null,
    "keywords": "micropython, ft6x36, FT6236, FT6336, FT6436L, FT6436, FocalTech Systems",
    "author": null,
    "author_email": "lbuque <1102390310@qq.com>",
    "download_url": "https://files.pythonhosted.org/packages/02/ec/27072f022330f554679e80778d533c06d9b6180d3d61d16e5256b6d388e8/micropython_ft6x36-0.2.0.tar.gz",
    "platform": null,
    "description": "# FT6X36 (FT6236/FT6336/FT6436L/FT6436)\n\nThis is a micropython module for self-capacitive touch panel controllers produced by FocalTech Systems.\n\n## Feature\n\n- Support rotation\n- Support two-point touch\n\n## Install\n\nopen a MicroPython REPL and execute these commands inside the REPL\n\n```python\nimport machine\nimport network\nimport time\nimport mip\nstation = network.WLAN(network.STA_IF)\nstation.active(True)\nstation.connect('SSID', 'PASSWORD')\ntime.sleep(1)\nprint('Device connected to network: {}'.format(station.isconnected()))\n# latest\nmip.install(\"github:lbuque/micropython-ft6x36/ft6x36/ft6x36.py\", target=\"lib\")\n# or mpy\nmip.install(\"ft6x36\", index=\"https://lbuque.github.io/micropython-ft6x36/mip/0.2.0\")\nprint('Installation completed')\nmachine.soft_reset()\n```\n\n## Thank\n\nPart of the code is from [FT6336U-](https://github.com/vae-V/FT6336U-.git).\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "FocalTech FT6X36 touch panel driver.",
    "version": "0.2.0",
    "project_urls": {
        "Homepage": "https://github.com/lbuque/micropython-ft6x36"
    },
    "split_keywords": [
        "micropython",
        " ft6x36",
        " ft6236",
        " ft6336",
        " ft6436l",
        " ft6436",
        " focaltech systems"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "02ec27072f022330f554679e80778d533c06d9b6180d3d61d16e5256b6d388e8",
                "md5": "da63cc3f1c62d29c3092711a04b8e763",
                "sha256": "cde1301fd6c380f791d937545ee1ac58b7c71e97dd0552b437e25f4a14d8cb3a"
            },
            "downloads": -1,
            "filename": "micropython_ft6x36-0.2.0.tar.gz",
            "has_sig": false,
            "md5_digest": "da63cc3f1c62d29c3092711a04b8e763",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 837763,
            "upload_time": "2024-06-15T16:22:35",
            "upload_time_iso_8601": "2024-06-15T16:22:35.081614Z",
            "url": "https://files.pythonhosted.org/packages/02/ec/27072f022330f554679e80778d533c06d9b6180d3d61d16e5256b6d388e8/micropython_ft6x36-0.2.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-06-15 16:22:35",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "lbuque",
    "github_project": "micropython-ft6x36",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "requirements": [],
    "lcname": "micropython-ft6x36"
}
        
Elapsed time: 0.38732s