Skip to main content

Turning Tapo smartplug on/off depending on current electricity consumption

Project description

smartplug-energy-controller

A microservice to turn a smartplug on/off depending on current electricity consumption. The intention of this service is to use all energy you produced, e.g with a balcony power plant, by e.g. loading a portable battery. This can be achieved by plug in your battery into a smartplug. The smartplug is turned on/off dynamically, depending on your current electricity consumption.

The service provides the post method add_watt_consumption with the value to be provided as a raw data string.

Installation

The python package can be installed from PyPi (https://pypi.org/project/smartplug-energy-controller/)

  1. Navigate to the folder where the virtual environment shall be created (e.g. your home dir):
cd ~
  1. Create virtual environment (this will create a new folder smart_meter_py_env):
python3 -m venv smart_meter_py_env
  1. Activate the virtual environment
source smart_meter_py_env/bin/activate
  1. Upgrade pip and setuptools
python3 -m pip install --upgrade pip setuptools
  1. Install smartplug-energy-controller
pip install smartplug-energy-controller
  1. Provide environment variables (e.g. in your ~/.profile).
CONFIG_PATH=full/path/to/config.yml

Configuration

Everything is configured in the respective .yml file. See https://github.com/die-bauerei/smartplug-energy-controller/blob/main/tests/data/config.example.yml

Autostart after reboot and on failure

Create a systemd service by opening the file /etc/systemd/system/smartplug_energy_controller.service and copy paste the following contents. Replace User/Group/ExecStart accordingly.

[Unit]
Description=smartplug_energy_controller
Documentation=https://github.com/die-bauerei/smartplug-energy-controller
After=network-online.target

[Service]
Type=simple
User=ubuntu
Group=ubuntu
UMask=002
Restart=on-failure
RestartSec=5s
Environment="CONFIG_PATH=full/path/to/config.yml"
ExecStart=/usr/bin/bash -lc "source /home/ubuntu/smart_meter_py_env/bin/activate && uvicorn --host 0.0.0.0 --port 8000 smartplug_energy_controller.app:app > /dev/null"

[Install]
WantedBy=multi-user.target

Now execute the following commands to enable autostart:

sudo systemctl --system daemon-reload
sudo systemctl enable smartplug_energy_controller.service

It is now possible to start, stop, restart and check the status of smartplug-energy-controller with:

sudo systemctl start smartplug_energy_controller.service
sudo systemctl stop smartplug_energy_controller.service
sudo systemctl restart smartplug_energy_controller.service
sudo systemctl status smartplug_energy_controller.service

Usage in conjunction with openHAB

To use this service you need to get the consumption values from your smart-meter. There are of course lots of different ways to achieve this. A possible setup could include:

Again, there are for sure many ways to do this. In case you are a python developer you may know https://github.com/spacemanspiff2007/HABApp. With HABApp you can accomplish this with a Rule like this:

class NumberItemStateChangedHttpForwarder(HABApp.Rule):
    def __init__(self, item_to_fwd : str, post_req_url : str) -> None:
        """
        Listen to a state changed event of a NumberItem and forward the value via a http post request
            Parameters:
                item_to_fwd (str): openHAB number item
                post_req_url (str): Full URL to send the post request to
        """
        super().__init__()
        self._url=post_req_url
        item=NumberItem.get_item(item_to_fwd)
        item.listen_event(self._item_state_changed, ItemStateChangedEventFilter())

    async def _item_state_changed(self, event):
        assert isinstance(event, ItemStateChangedEvent), type(event)
        try:
            async with self.async_http.post(self._url, data=str(event.value)) as response:
                if response.status != http.HTTPStatus.OK:
                    log.warning(f"Failed to forward value via post request to {self._url}. Return code: {response.status}. Text: {await response.text()}")
        except Exception as exc:
            log.error(f"Caught Exception: {exc}")

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

smartplug_energy_controller-0.0.7.tar.gz (6.7 kB view details)

Uploaded Source

Built Distribution

File details

Details for the file smartplug_energy_controller-0.0.7.tar.gz.

File metadata

File hashes

Hashes for smartplug_energy_controller-0.0.7.tar.gz
Algorithm Hash digest
SHA256 b9eec73e82742ec558f533ede1ab234b8214041c4a7df0a72c4cad97c02305a6
MD5 289548729273f45fa40fb5d532038533
BLAKE2b-256 9f0d40b2e25489d434bd91b19ca05d68cf6d2673605d94e36c512f974d205645

See more details on using hashes here.

Provenance

File details

Details for the file smartplug_energy_controller-0.0.7-py3-none-any.whl.

File metadata

File hashes

Hashes for smartplug_energy_controller-0.0.7-py3-none-any.whl
Algorithm Hash digest
SHA256 f143a0ce8416adbecd564567aeee6bfff0e05805383d3452e7c9b2a27c025877
MD5 7eaeda94387ddff6422c56c40ab8f91f
BLAKE2b-256 6f4a2ca0497411e2adbe94b4182057282b5d6f35c0693903406ab88856552ead

See more details on using hashes here.

Provenance

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page