telemetrix-rpi-pico-w


Nametelemetrix-rpi-pico-w JSON
Version 1.20 PyPI version JSON
download
home_pageNone
SummaryTelemetrix Client For the Raspberry Pi Pico-W
upload_time2024-03-25 16:35:49
maintainerNone
docs_urlNone
authorNone
requires_python>=3.8
licenseAGPL-3.0-or-later
keywords telemetrix raspberry pi pico pico-w66 python
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            
# telemetrix-rpi-pico-w

Interact and monitor a Raspberry Pi Pico W remotely from your PC using Python.
It is similar to Arduino Firmata but explicitly written for the Raspberry Pi Pico W.

You have a choice of two client APIs. One uses [Python threading](https://htmlpreview.github.io/?https://github.com/MrYsLab/telemetrix-rpi-pico-w/blob/master/html/telemetrix_rpi_pico_w/index.html) for concurrency, and the
other uses [Python asyncio.](https://htmlpreview.github.io/?https://github.com/MrYsLab/telemetrix-rpi-pico-w/blob/master/html/telemetrix_rpi_pico_w_aio/index.html)

![](images/tmx.png)

A complete User's Guide is [available online.](https://mryslab.github.io/telemetrix-rpi-pico-w/)

The Pico W server code is available to be viewed [here.](https://github.com/MrYsLab/Telemetrix4RpiPicoW)

The following functionality is implemented in this release:

* Analog Input
* Digital Input, Digital Input Pullup, Digital Input Pulldown
* PWM output
* Loopback (for client/server link debugging)
* I2C Support
* SPI Support
* NeoPixel Support
* Servo Support
* HC-SR04 Type Sonar Distance Sensor Support
* Stepper Motor Support
* DHT 11 and 22 Humidity/Temperature Sensor Support
* Automatic board reset of the PICO W using the watchdog timer when an 
  application exits.


## To install The Client Library:



```bash
pip install telemetrix-rpi-pico-w 
```

### If you are upgrading from a previously installed version:

```bash
pip install telemetrix-rpi-pico-w --upgrade
```

## To Install The Pico-W Server Application
Follow the instructions in the [User's Guide.](https://mryslab.github.io/telemetrix-rpi-pico-w/install_pico_server/)

## Download And Run The Examples
   
1. [Download,](https://github.com/MrYsLab/telemetrix-rpi-pico-w/archive/master.zip) 
   save, and uncompress the telemetrix-rpi-pico-w Github repository. There is a directory 
   for [threaded examples](https://github.com/MrYsLab/telemetrix-rpi-pico-w/tree/master/examples)
   as well as [asyncio examples](https://github.com/MrYsLab/telemetrix-rpi-pico-w/tree/master/examples_aio).
   
2. Open the _examples_ directory and run any of the examples using Python3. You may
modify them to suit your needs.


This project was developed with [Pycharm](https://www.jetbrains.com/pycharm/?from=telemetrix-rpi-pico-w)![logo](https://github.com/MrYsLab/python_banyan/blob/master/images/icon_PyCharm.png)


            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "telemetrix-rpi-pico-w",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.8",
    "maintainer_email": null,
    "keywords": "telemetrix, Raspberry Pi, Pico, Pico-w66, Python",
    "author": null,
    "author_email": "Alan Yorinks <MisterYsLab@gmail.com>",
    "download_url": "https://files.pythonhosted.org/packages/21/ca/020f1e32895c6026106ecc7cd6ffd2b4f4cb148f68223ce82bcc66176448/telemetrix-rpi-pico-w-1.20.tar.gz",
    "platform": null,
    "description": "\n# telemetrix-rpi-pico-w\n\nInteract and monitor a Raspberry Pi Pico W remotely from your PC using Python.\nIt is similar to Arduino Firmata but explicitly written for the Raspberry Pi Pico W.\n\nYou have a choice of two client APIs. One uses [Python threading](https://htmlpreview.github.io/?https://github.com/MrYsLab/telemetrix-rpi-pico-w/blob/master/html/telemetrix_rpi_pico_w/index.html) for concurrency, and the\nother uses [Python asyncio.](https://htmlpreview.github.io/?https://github.com/MrYsLab/telemetrix-rpi-pico-w/blob/master/html/telemetrix_rpi_pico_w_aio/index.html)\n\n![](images/tmx.png)\n\nA complete User's Guide is [available online.](https://mryslab.github.io/telemetrix-rpi-pico-w/)\n\nThe Pico W server code is available to be viewed [here.](https://github.com/MrYsLab/Telemetrix4RpiPicoW)\n\nThe following functionality is implemented in this release:\n\n* Analog Input\n* Digital Input, Digital Input Pullup, Digital Input Pulldown\n* PWM output\n* Loopback (for client/server link debugging)\n* I2C Support\n* SPI Support\n* NeoPixel Support\n* Servo Support\n* HC-SR04 Type Sonar Distance Sensor Support\n* Stepper Motor Support\n* DHT 11 and 22 Humidity/Temperature Sensor Support\n* Automatic board reset of the PICO W using the watchdog timer when an \n  application exits.\n\n\n## To install The Client Library:\n\n\n\n```bash\npip install telemetrix-rpi-pico-w \n```\n\n### If you are upgrading from a previously installed version:\n\n```bash\npip install telemetrix-rpi-pico-w --upgrade\n```\n\n## To Install The Pico-W Server Application\nFollow the instructions in the [User's Guide.](https://mryslab.github.io/telemetrix-rpi-pico-w/install_pico_server/)\n\n## Download And Run The Examples\n   \n1. [Download,](https://github.com/MrYsLab/telemetrix-rpi-pico-w/archive/master.zip) \n   save, and uncompress the telemetrix-rpi-pico-w Github repository. There is a directory \n   for [threaded examples](https://github.com/MrYsLab/telemetrix-rpi-pico-w/tree/master/examples)\n   as well as [asyncio examples](https://github.com/MrYsLab/telemetrix-rpi-pico-w/tree/master/examples_aio).\n   \n2. Open the _examples_ directory and run any of the examples using Python3. You may\nmodify them to suit your needs.\n\n\nThis project was developed with [Pycharm](https://www.jetbrains.com/pycharm/?from=telemetrix-rpi-pico-w)![logo](https://github.com/MrYsLab/python_banyan/blob/master/images/icon_PyCharm.png)\n\n",
    "bugtrack_url": null,
    "license": "AGPL-3.0-or-later",
    "summary": "Telemetrix Client For the Raspberry Pi Pico-W",
    "version": "1.20",
    "project_urls": null,
    "split_keywords": [
        "telemetrix",
        " raspberry pi",
        " pico",
        " pico-w66",
        " python"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b1a0f7e69d7716356195a13bf364c5214f32c96efec486ca0960afcd4e730bc9",
                "md5": "f6edf8c0078e8ac7a682b62acd936aa2",
                "sha256": "91dbcb8603de1c677af72d4951a8866537630e2817e394557f9d7cd78f121977"
            },
            "downloads": -1,
            "filename": "telemetrix_rpi_pico_w-1.20-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "f6edf8c0078e8ac7a682b62acd936aa2",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.8",
            "size": 116135,
            "upload_time": "2024-03-25T16:35:48",
            "upload_time_iso_8601": "2024-03-25T16:35:48.041616Z",
            "url": "https://files.pythonhosted.org/packages/b1/a0/f7e69d7716356195a13bf364c5214f32c96efec486ca0960afcd4e730bc9/telemetrix_rpi_pico_w-1.20-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "21ca020f1e32895c6026106ecc7cd6ffd2b4f4cb148f68223ce82bcc66176448",
                "md5": "fa7b975f45221a49be636ffc1dc2a6a3",
                "sha256": "0cd172ed8e39653251daf8c3bc38473fde5f21f27b14101a7818700ae54dbb60"
            },
            "downloads": -1,
            "filename": "telemetrix-rpi-pico-w-1.20.tar.gz",
            "has_sig": false,
            "md5_digest": "fa7b975f45221a49be636ffc1dc2a6a3",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 72825,
            "upload_time": "2024-03-25T16:35:49",
            "upload_time_iso_8601": "2024-03-25T16:35:49.772269Z",
            "url": "https://files.pythonhosted.org/packages/21/ca/020f1e32895c6026106ecc7cd6ffd2b4f4cb148f68223ce82bcc66176448/telemetrix-rpi-pico-w-1.20.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-03-25 16:35:49",
    "github": false,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "lcname": "telemetrix-rpi-pico-w"
}
        
Elapsed time: 0.21536s