Metadata-Version: 2.1
Name: pysonofflanr3
Version: 1.1.4
Summary: Interface for Sonoff devices running v3+ Itead firmware.
Home-page: https://github.com/mattsaxon/pysonofflan
Author: Matt Saxon
Author-email: saxonmatt@hotmail.com
License: MIT license
Project-URL: Home Assistant component, https://github.com/mattsaxon/sonoff-lan-mode-homeassistant/
Project-URL: Bug Reports, https://github.com/mattsaxon/pysonofflan/issues/
Project-URL: Component Docs, https://pysonofflanr3.readthedocs.io/
Project-URL: Itead Dev Docs, https://github.com/itead/Sonoff_Devices_DIY_Tools/tree/master/other/
Keywords: pysonofflanr3,homeassistant
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Topic :: Home Automation
Requires-Dist: Click (>=7.0)
Requires-Dist: click-log
Requires-Dist: pycryptodome
Requires-Dist: requests
Requires-Dist: zeroconf (>=0.24.5)

=============
pysonofflanr3
=============


.. image:: https://img.shields.io/pypi/v/pysonofflanr3.svg
    :target: https://pypi.python.org/pypi/pysonofflanr3
    :alt: Latest PyPi Release

.. image:: https://img.shields.io/pypi/pyversions/pysonofflanr3.svg?style=flat
    :target: https://pypi.python.org/pypi/pysonofflanr3
    :alt: Supported Python Versions

.. image:: https://img.shields.io/travis/mattsaxon/pysonofflan.svg
    :target: https://travis-ci.org/mattsaxon/pysonofflan
    :alt: Build Status

.. image:: https://readthedocs.org/projects/pysonofflanr3/badge/?version=latest
    :target: https://pysonofflanr3.readthedocs.io/
    :alt: Documentation Status

.. image:: https://coveralls.io/repos/github/mattsaxon/pysonofflan/badge.svg
    :target: https://coveralls.io/github/mattsaxon/pysonofflan
    :alt: Code Coverage

.. image:: https://img.shields.io/pypi/wheel/pysonofflanr3.svg
    :target: https://pypi.org/project/pysonofflanr3/#files
    :alt: Has Wheel Package

.. image:: https://pyup.io/repos/github/mattsaxon/pysonofflan/shield.svg
    :target: https://pyup.io/repos/github/mattsaxon/pysonofflan/
    :alt: Updates

.. image:: https://pyup.io/repos/github/mattsaxon/pysonofflan/python-3-shield.svg
    :target: https://pyup.io/repos/github/mattsaxon/pysonofflan/
    :alt: Python 3

.. image:: https://www.buymeacoffee.com/assets/img/guidelines/download-assets-sm-2.svg
    :target: https://www.buymeacoffee.com/XTOsBAc
    :alt: Buy Me A Coffee

Control Sonoff devices running original firmware, in LAN mode.
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

To control Sonoff switches running the V3+ Itead firmware (tested on 3.0, 3.0.1, 3.1.0, 3.3.0), locally (LAN mode).

**This will only work for Sonoff devices running V3+ of the stock (Itead / eWeLink) firmware. For users of V1.8.0 - V2.6.1, please use**  `PySonoffLAN <https://pypi.org/project/pysonofflan/>`_


This module provides a way to interface with Sonoff smart home devices,
such as smart switches (e.g. Sonoff Basic), plugs (e.g. Sonoff S20),
and wall switches (e.g. Sonoff Touch), when these devices are in LAN Mode.

LAN Mode is a feature introduced by manufacturer Itead, to allow operation
locally when their servers are unavailable.
Further details can be found in the `eWeLink LAN Mode guide`__.

__ https://help.ewelink.cc/hc/en-us/articles/360007134171-LAN-Mode-Tutorial

Since mid 2018, the firmware Itead have shipped with most Sonoff devices
has provided this feature, allowing devices to be controlled directly
on the local network using a WebSocket connection on port 8081.

Features
--------

* Discover all devices on local network
* Read device state
* Switch device ON/OFF
* Listen for state changes announced by the device (e.g. by physical switch)
* Activate inching/momentary device, with variable ON time (e.g. 1s)

Documentation
------------------

* Documentation: https://pysonofflanr3.readthedocs.io.

Install
------------------
::

    $ pip install pysonofflanr3

Command-Line Usage
------------------
::

    Usage: pysonofflanr3 [OPTIONS] COMMAND [ARGS]...

      A cli tool for controlling Sonoff Smart Switches/Plugs in LAN Mode.

    Options:
      --host TEXT          IP address or hostname of the device to connect to.
      --device_id TEXT     Device ID of the device to connect to.
      --inching TEXT       Number of seconds of "on" time if this is an
                           Inching/Momentary switch.
      -l, --level LVL  Either CRITICAL, ERROR, WARNING, INFO or DEBUG
      --help               Show this message and exit.
      --api_key KEY        Needed for devices not in DIY mode. See https://github.com/mattsaxon/pysonofflan/wiki/Finding-the-API__Key

    Commands:
      discover  Discover devices in the network
      listen    Connect to device, print state and repeat
      off       Turn the device off.
      on        Turn the device on.
      state     Connect to device and print current state.

Usage Example
=======================
::

    $ pysonofflan discover
    2019-01-31 00:45:32,074 - info: Attempting to discover Sonoff LAN Mode devices on the local network, please wait...
    2019-01-31 00:46:24,007 - info: Found Sonoff LAN Mode device at IP 192.168.0.77

    $ pysonofflan --host 192.168.0.77 state
    2019-01-31 00:41:34,931 - info: Initialising SonoffSwitch with host 192.168.0.77
    2019-01-31 00:41:35,016 - info: == Device: 10006866e9 (192.168.0.77) ==
    2019-01-31 00:41:35,016 - info: State: OFF

    $ pysonofflan --host 192.168.0.77 on
    2019-01-31 00:49:40,334 - info: Initialising SonoffSwitch with host 192.168.0.77
    2019-01-31 00:49:40,508 - info:
    2019-01-31 00:49:40,508 - info: Initial state:
    2019-01-31 00:49:40,508 - info: == Device: 10006866e9 (192.168.0.77) ==
    2019-01-31 00:49:40,508 - info: State: OFF
    2019-01-31 00:49:40,508 - info:
    2019-01-31 00:49:40,508 - info: New state:
    2019-01-31 00:49:40,508 - info: == Device: 10006866e9 (192.168.0.77) ==
    2019-01-31 00:49:40,508 - info: State: ON

Library Usage
------------------

All common, shared functionality is available through :code:`SonoffSwitch` class::

    x = SonoffSwitch("192.168.1.50")

Upon instantiating the SonoffSwitch class, a connection is
initiated and device state is populated, but no further action is taken.

For most use cases, you'll want to make use of the :code:`callback_after_update`
parameter to do something with the device after a connection has been
initialised, for example::

    async def print_state_callback(device):
        if device.basic_info is not None:
            print("ON" if device.is_on else "OFF")
            device.shutdown_event_loop()

    SonoffSwitch(
        host="192.168.1.50",
        callback_after_update=print_state_callback
    )

This example simply connects to the device, prints whether it is currently
"ON" or "OFF", then closes the connection. Note, the callback must be
asynchronous.

Module-specific errors are raised as Exceptions, and are expected
to be handled by the user of the library.

License
-------

* Free software: MIT license

Credits
-------

This package was created with Cookiecutter_ and the `audreyr/cookiecutter-pypackage`_ project template.

.. _Cookiecutter: https://github.com/audreyr/cookiecutter
.. _`audreyr/cookiecutter-pypackage`: https://github.com/audreyr/cookiecutter-pypackage


History
=======

1.1.4 (2020-03-29)
------------------
* Enabled code to work if device IP address changes
* Fixed faulty CLI introduced with 1.1.3 (https://github.com/mattsaxon/pysonofflan/issues/65)
* Removed previous workaround code for earlier version of zeroconf (<=24.4)

1.1.3 (2020-02-16)
------------------
* Fixed issue of reconnection that device remains unavailable until state changes
* Fixed retry code for strip type devices

1.1.2 (deleted release)
-----------------------

1.1.1 (2020-02-01)
------------------
* Optimisations to deal with later zeroconf versions which have some different behaviour
* Improved error handling of unexpected errors

1.1.0 (2020-01-10)
------------------
* First release on PyPI.
* Forked from PySonoffLAN package (courtesy of Andrew Beveridge)
* Works on V3 Itead firmware using mDNS for service discovery and REST for service invocation
* Supports DIY mode as well as 'standard' mode (for standard mode API key is needed to be obtained, e.g. by sniffing LAN)
* Supports all known devices for switching, although no sensors added at this point


