Skip to main content

Asynchronous Python client for the Violet Pool Controller.

Project description

Violet Pool Controller API

PyPI version PyPI downloads Python versions License: AGPL v3+

Buy Me A Coffee Tesla

An asynchronous Python client for interacting with the Violet Pool Controller.

This library is primarily designed to power the official Violet Pool Controller Home Assistant Integration, but it can be used independently for any Python project that needs to fetch readings or control a Violet Pool system.

📖 Documentation:

The docs/ directory is the single source of truth and is used for both GitHub Pages and Wiki sync.

Features

  • Asynchronous: Fully async operations using aiohttp.
  • Resilient: Built-in Circuit Breaker and Rate Limiter to protect both the client and the controller from overload.
  • Sanitization: Strict payload input sanitization to prevent injection and invalid settings.

Installation

pip install violet-poolController-api

Basic Usage

import asyncio
import aiohttp
from violet_poolcontroller_api.api import VioletPoolAPI, VioletPoolAPIError

async def main():
    # Create an aiohttp ClientSession
    async with aiohttp.ClientSession() as session:
        # Initialize the API
        # Note: In a standard setup, just enter the IP address without a port.
        # A port (e.g. "192.168.1.100:8080") can optionally be provided if you use a proxy or alternative setup.
        api = VioletPoolAPI(
            host="192.168.1.100",
            username="admin",
            password="your_password",
            session=session,
            dosing_standalone=False,  # True for Violet dosing standalone setups
        )

        try:
            # --- 1. Fetch current sensor readings ---
            readings = await api.get_readings()
            print("Current Pool Readings:")
            print(readings)

            # --- 2. Control the Filter Pump ---
            # Set pump speed to 2 (Normal) permanently (duration=0)
            await api.set_pump_speed(speed=2, duration=0)
            print("\nPump speed set to 2.")

            # --- 3. Set Target Temperature ---
            # Set the target temperature for the heater to 28.5 degrees
            await api.set_device_temperature("HEATER", 28.5)
            print("\nHeater target temperature set to 28.5°C.")

            # --- 4. Control Pool Lights ---
            # Trigger the color pulse animation for the pool light
            await api.set_light_color_pulse()
            print("\nLight color pulse triggered.")

        except VioletPoolAPIError as e:
            print(f"An error occurred while communicating with the Violet controller: {e}")

if __name__ == "__main__":
    asyncio.run(main())

Advanced Operations

The API client includes many more functions tailored to the Violet Controller:

  • get_config(["PUMP_SPEED_1", "PUMP_SPEED_2"]): Fetch specific configuration values.
  • set_ph_target(7.2): Change the pH target value.
  • set_orp_target(750): Change the ORP (Redox) target value.
  • set_pv_surplus(active=True): Enable the PV-Surplus mode.
  • manual_dosing(dosing_type="Chlor", duration=120): Trigger manual chemical dosing.

For a full list of available commands and more detailed examples, please refer to the Wiki or the source code in api.py.

Violet Dosing Standalone Mode

If your Violet setup runs as dosing standalone (without the base module), enable:

api = VioletPoolAPI(
    host="192.168.1.100",
    username="admin",
    password="your_password",
    session=session,
    dosing_standalone=True,
)

In this mode, dosing functions (for example manual_dosing and dosing parameter/target updates) stay available, while base-module-only switch functions (for example pump/light/backwash) are blocked with a clear error message.

Note on getReadings format: As of version 0.0.7, the API client automatically detects and normalizes the payload output from the controller. Whether your Violet Controller returns the classic base-module dict structure ({"PUMPSTATE": "2", "PH": 7.2}) or the new standalone list structure, the get_readings() and get_specific_readings() functions will always return a seamless, flattened key-value dictionary. Your Home Assistant integration or downstream application will work uniformly with both formats without requiring any extra code!

Hardware Profile Detection: As of the latest release, the API client provides a method to detect the specific hardware configuration of your Violet Controller. The API automatically detects the connected modules and updates internal states based on the available readings.

profile = await api.get_hardware_profile()
print(profile)
# Output example:
# {
#     "base_module": True,
#     "dosing_module": True,
#     "extension_module_1": True,
#     "extension_module_2": False,
# }

This detection parses get_readings() to check for the presence of certain internal status parameters (SYSTEM_dosagemodule_cpu_temperature, EXT1_1, EXT2_1), allowing your application to dynamically adapt to the connected modules (Base Module, Dosing Module, Relay Extension 1 and 2). By utilizing this detection, developers and integrations can accurately filter out features for missing hardware, ensuring that only supported options are exposed to the user.

License

GNU Affero General Public License v3.0 or later (AGPLv3+)


About the Violet Pool Controller

The VIOLET Pool Controller by PoolDigital GmbH & Co. KG is a premium smart pool automation system developed in Germany, featuring a JSON API for seamless Home Assistant integration.

Disclaimer: This is an unofficial, community-driven project. It is not affiliated with, endorsed by, or associated with PoolDigital GmbH & Co. KG in any way. "VIOLET" and any related trademarks are the property of their respective owners.

⚠️ WARNING - USE AT YOUR OWN RISK: This software interacts with physical hardware and automation systems that control water chemistry (pH, Chlorine/ORP) and electrical equipment (pumps, heaters). A bug, network issue, or incorrect configuration could result in hardware damage, unsafe water conditions, or other hazards. By using this software, you acknowledge and agree that you are solely responsible for any damage, injury, or loss of property that may occur. Please always monitor your pool's chemistry and hardware independently.

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

violet_poolcontroller_api-0.0.19.tar.gz (51.0 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

violet_poolcontroller_api-0.0.19-py3-none-any.whl (53.0 kB view details)

Uploaded Python 3

File details

Details for the file violet_poolcontroller_api-0.0.19.tar.gz.

File metadata

File hashes

Hashes for violet_poolcontroller_api-0.0.19.tar.gz
Algorithm Hash digest
SHA256 8ce0418f73233091553364d6b297170aa22ef4ceb61d6ea2a8a9ad4ed033461a
MD5 4ac529a9a7c6401a6015fa94aa5e8a73
BLAKE2b-256 0750c702ec1dfd735d477e14268b5b03fd80c9f9b904aaa2d2316eb872cb3fc8

See more details on using hashes here.

File details

Details for the file violet_poolcontroller_api-0.0.19-py3-none-any.whl.

File metadata

File hashes

Hashes for violet_poolcontroller_api-0.0.19-py3-none-any.whl
Algorithm Hash digest
SHA256 eb9fba79714fa2b00746ed96ce4cc031492130f7a1c8fba58b8d4a44cb597a4c
MD5 32dbe36b2d88f53db0027a927d3371fb
BLAKE2b-256 a55d2d5695c411a5278fc8841ef9df4f8838111f56bd09addbda9345d81b507c

See more details on using hashes here.

Supported by

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