adafruit-circuitpython-esp-atcontrol


Nameadafruit-circuitpython-esp-atcontrol JSON
Version 0.11.0 PyPI version JSON
download
home_page
SummaryCircuitPython driver for communicating using ESP AT command set.
upload_time2024-02-29 22:07:22
maintainer
docs_urlNone
author
requires_python
licenseMIT
keywords adafruit software esp at atcontrol internet communication micropython circuitpython
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            Introduction
============

.. image:: https://readthedocs.org/projects/adafruit-circuitpython-esp-atcontrol/badge/?version=latest
    :target: https://docs.circuitpython.org/projects/esp-atcontrol/en/latest/
    :alt: Documentation Status

.. image:: https://raw.githubusercontent.com/adafruit/Adafruit_CircuitPython_Bundle/main/badges/adafruit_discord.svg
    :target: https://adafru.it/discord
    :alt: Discord

.. image:: https://github.com/adafruit/Adafruit_CircuitPython_ESP_ATcontrol/workflows/Build%20CI/badge.svg
    :target: https://github.com/adafruit/Adafruit_CircuitPython_ESP_ATcontrol/actions/
    :alt: Build Status

.. image:: https://img.shields.io/badge/code%20style-black-000000.svg
    :target: https://github.com/psf/black
    :alt: Code Style: Black

This library is no longer supported! The library is being left available for continued usage, however, Adafruit is no longer supporting it.
===========================================================================================================================================

Use the ESP AT command sent to communicate with the Interwebs. Its slow, but works to get data into CircuitPython

Command set: https://www.espressif.com/sites/default/files/documentation/4a-esp8266_at_instruction_set_en.pdf

Examples: https://www.espressif.com/sites/default/files/documentation/4b-esp8266_at_command_examples_en.pdf


Dependencies
=============
This driver depends on:

* `Adafruit CircuitPython <https://github.com/adafruit/circuitpython>`_
* `Adafruit CircuitPython ConnectionManager <https://github.com/adafruit/Adafruit_CircuitPython_ConnectionManager/>`_
* `Adafruit CircuitPython Requests <https://github.com/adafruit/Adafruit_CircuitPython_Requests/>`_

Please ensure all dependencies are available on the CircuitPython filesystem.
This is easily achieved by downloading
`the Adafruit library and driver bundle <https://github.com/adafruit/Adafruit_CircuitPython_Bundle>`_.

Installing from PyPI
--------------------

On supported GNU/Linux systems like the Raspberry Pi, you can install the driver locally `from
PyPI <https://pypi.org/project/adafruit-circuitpython-esp-atcontrol/>`_. To install for current user:

.. code-block:: shell

    pip3 install adafruit-circuitpython-esp-atcontrol

To install system-wide (this may be required in some cases):

.. code-block:: shell

    sudo pip3 install adafruit-circuitpython-esp-atcontrol

To install in a virtual environment in your current project:

.. code-block:: shell

    mkdir project-name && cd project-name
    python3 -m venv .venv
    source .venv/bin/activate
    pip3 install adafruit-circuitpython-esp-atcontrol

Usage Example
=============

See examples folder for full demos


Documentation
=============

API documentation for this library can be found on `Read the Docs <https://docs.circuitpython.org/projects/esp-atcontrol/en/latest/>`_.

For information on building library documentation, please check out `this guide <https://learn.adafruit.com/creating-and-sharing-a-circuitpython-library/sharing-our-docs-on-readthedocs#sphinx-5-1>`_.

Contributing
============

Contributions are welcome! Please read our `Code of Conduct
<https://github.com/adafruit/Adafruit_CircuitPython_espATcontrol/blob/main/CODE_OF_CONDUCT.md>`_
before contributing to help this project stay welcoming.

            

Raw data

            {
    "_id": null,
    "home_page": "",
    "name": "adafruit-circuitpython-esp-atcontrol",
    "maintainer": "",
    "docs_url": null,
    "requires_python": "",
    "maintainer_email": "",
    "keywords": "adafruit,software,esp,at,atcontrol,internet,communication,micropython,circuitpython",
    "author": "",
    "author_email": "Adafruit Industries <circuitpython@adafruit.com>",
    "download_url": "https://files.pythonhosted.org/packages/25/ca/3e3ac0e4116948f134213c1852e50c8158106eec4622c5cbace8c8274a19/adafruit-circuitpython-esp-atcontrol-0.11.0.tar.gz",
    "platform": null,
    "description": "Introduction\n============\n\n.. image:: https://readthedocs.org/projects/adafruit-circuitpython-esp-atcontrol/badge/?version=latest\n    :target: https://docs.circuitpython.org/projects/esp-atcontrol/en/latest/\n    :alt: Documentation Status\n\n.. image:: https://raw.githubusercontent.com/adafruit/Adafruit_CircuitPython_Bundle/main/badges/adafruit_discord.svg\n    :target: https://adafru.it/discord\n    :alt: Discord\n\n.. image:: https://github.com/adafruit/Adafruit_CircuitPython_ESP_ATcontrol/workflows/Build%20CI/badge.svg\n    :target: https://github.com/adafruit/Adafruit_CircuitPython_ESP_ATcontrol/actions/\n    :alt: Build Status\n\n.. image:: https://img.shields.io/badge/code%20style-black-000000.svg\n    :target: https://github.com/psf/black\n    :alt: Code Style: Black\n\nThis library is no longer supported! The library is being left available for continued usage, however, Adafruit is no longer supporting it.\n===========================================================================================================================================\n\nUse the ESP AT command sent to communicate with the Interwebs. Its slow, but works to get data into CircuitPython\n\nCommand set: https://www.espressif.com/sites/default/files/documentation/4a-esp8266_at_instruction_set_en.pdf\n\nExamples: https://www.espressif.com/sites/default/files/documentation/4b-esp8266_at_command_examples_en.pdf\n\n\nDependencies\n=============\nThis driver depends on:\n\n* `Adafruit CircuitPython <https://github.com/adafruit/circuitpython>`_\n* `Adafruit CircuitPython ConnectionManager <https://github.com/adafruit/Adafruit_CircuitPython_ConnectionManager/>`_\n* `Adafruit CircuitPython Requests <https://github.com/adafruit/Adafruit_CircuitPython_Requests/>`_\n\nPlease ensure all dependencies are available on the CircuitPython filesystem.\nThis is easily achieved by downloading\n`the Adafruit library and driver bundle <https://github.com/adafruit/Adafruit_CircuitPython_Bundle>`_.\n\nInstalling from PyPI\n--------------------\n\nOn supported GNU/Linux systems like the Raspberry Pi, you can install the driver locally `from\nPyPI <https://pypi.org/project/adafruit-circuitpython-esp-atcontrol/>`_. To install for current user:\n\n.. code-block:: shell\n\n    pip3 install adafruit-circuitpython-esp-atcontrol\n\nTo install system-wide (this may be required in some cases):\n\n.. code-block:: shell\n\n    sudo pip3 install adafruit-circuitpython-esp-atcontrol\n\nTo install in a virtual environment in your current project:\n\n.. code-block:: shell\n\n    mkdir project-name && cd project-name\n    python3 -m venv .venv\n    source .venv/bin/activate\n    pip3 install adafruit-circuitpython-esp-atcontrol\n\nUsage Example\n=============\n\nSee examples folder for full demos\n\n\nDocumentation\n=============\n\nAPI documentation for this library can be found on `Read the Docs <https://docs.circuitpython.org/projects/esp-atcontrol/en/latest/>`_.\n\nFor information on building library documentation, please check out `this guide <https://learn.adafruit.com/creating-and-sharing-a-circuitpython-library/sharing-our-docs-on-readthedocs#sphinx-5-1>`_.\n\nContributing\n============\n\nContributions are welcome! Please read our `Code of Conduct\n<https://github.com/adafruit/Adafruit_CircuitPython_espATcontrol/blob/main/CODE_OF_CONDUCT.md>`_\nbefore contributing to help this project stay welcoming.\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "CircuitPython driver for communicating using ESP AT command set.",
    "version": "0.11.0",
    "project_urls": {
        "Homepage": "https://github.com/adafruit/Adafruit_CircuitPython_ESP_ATcontrol"
    },
    "split_keywords": [
        "adafruit",
        "software",
        "esp",
        "at",
        "atcontrol",
        "internet",
        "communication",
        "micropython",
        "circuitpython"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "cac49c67689c0dba01921d7cc6ff86066eb44c87f48c4f65024617abd533ebb5",
                "md5": "c784ad474f0c6de198585d08c0f32cec",
                "sha256": "11fbcabf5dba369e3a9a720c6d6f04a76f5fb3297f7753a224d589e57c089f74"
            },
            "downloads": -1,
            "filename": "adafruit_circuitpython_esp_atcontrol-0.11.0-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "c784ad474f0c6de198585d08c0f32cec",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": null,
            "size": 17215,
            "upload_time": "2024-02-29T22:07:20",
            "upload_time_iso_8601": "2024-02-29T22:07:20.283846Z",
            "url": "https://files.pythonhosted.org/packages/ca/c4/9c67689c0dba01921d7cc6ff86066eb44c87f48c4f65024617abd533ebb5/adafruit_circuitpython_esp_atcontrol-0.11.0-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "25ca3e3ac0e4116948f134213c1852e50c8158106eec4622c5cbace8c8274a19",
                "md5": "bbaf1af16238750ce33f2653c406600f",
                "sha256": "eacbca36878222db7e70961dbbdbafc1d54a2a68d5055b8f65709b39264bda9f"
            },
            "downloads": -1,
            "filename": "adafruit-circuitpython-esp-atcontrol-0.11.0.tar.gz",
            "has_sig": false,
            "md5_digest": "bbaf1af16238750ce33f2653c406600f",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 41960,
            "upload_time": "2024-02-29T22:07:22",
            "upload_time_iso_8601": "2024-02-29T22:07:22.082829Z",
            "url": "https://files.pythonhosted.org/packages/25/ca/3e3ac0e4116948f134213c1852e50c8158106eec4622c5cbace8c8274a19/adafruit-circuitpython-esp-atcontrol-0.11.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-02-29 22:07:22",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "adafruit",
    "github_project": "Adafruit_CircuitPython_ESP_ATcontrol",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "requirements": [],
    "lcname": "adafruit-circuitpython-esp-atcontrol"
}
        
Elapsed time: 0.26444s