Skip to main content

A Home Assistant package for creating synthetic sensors from YAML configuration with mathematical formulas

Project description

HA Synthetic Sensors

GitHub Release PyPI Version Python Version License

CI Status Coverage Code Quality Security

Pre-commit Linting: Ruff Type Checking: MyPy

Buy Me A Coffee

A Python package for creating formula-based synthetic sensors in Home Assistant integrations using YAML configuration and mathematical expressions.

What it does

Synthetic sensors are sensor extensions that provide capabilities beyond the base sensors or create new sensors with formula-based calculations. They provide a new state value by applying mathematical formulas to other entities, allowing you to:

  • Extend sensor capabilities with calculated attributes
  • Transform sensor values using mathematical formulations
  • Combine multiple sensors into derived metrics
  • Add computed states without modifying original sensors
  • Add computed attributes that evaluate based on the main sensor state or other entities

Key Features

  • Sensor Definition and Modification: Without code modification change the sensor or attribute state with YAML
  • Bulk Load/Modify and Per-Sensor CRUD: Load complete sensor sets or make granular changes
  • Rich Formula Based States: Formulas with natural syntax and powerful evaluation and collection patterns
  • Variable reuse: Define variables globally or per sensor and use those variables in formulas or attributes
  • Dot notation: Easy access to entity attributes in formulas
  • Automatic Entity-ID Tracking: Updates the definitions based on external HA entity renaming
  • Type safety: Complete TypedDict interfaces for better IDE support and validation
  • Storage-first architecture: Runtime configuration changes without file modifications
  • Built for Performance: AST caching and evaluation of formulas and bulk modification event storm avoidance
  • Cross-Attribute References: Formulas can reference other attributes with proper evaluation order
  • Dependency Validation: Automatic detection of circular dependencies and variable conflicts

Installation

Install the package using pip:

pip install ha-synthetic-sensors

For development setup:

git clone https://github.com/SpanPanel/ha-synthetic-sensors
cd ha-synthetic-sensors
poetry install --with dev
./setup-hooks.sh

Quick Start

Here's a simple example of how to create synthetic sensors:

version: "1.0"

sensors:
  energy_cost_current:
    name: "Current Energy Cost"
    formula: "current_power * electricity_rate / conversion_factor"
    variables:
      current_power: "sensor.span_panel_instantaneous_power"
      electricity_rate: "input_number.electricity_rate_cents_kwh"
      conversion_factor: 1000
    metadata:
      unit_of_measurement: "¢/h"
      state_class: "total"
      device_class: "monetary"
      icon: "mdi:currency-usd"

  energy_cost_analysis:
    name: "Energy Cost Analysis"
    formula: "current_power * electricity_rate / 1000"
    attributes:
      daily_projected:
        formula: "state * 24"
        metadata:
          unit_of_measurement: "¢"
          suggested_display_precision: 2
      monthly_projected:
        formula: "state * 24 * 30"
        metadata:
          unit_of_measurement: "¢"
          suggested_display_precision: 2
    variables:
      current_power: "sensor.span_panel_instantaneous_power"
      electricity_rate: "input_number.electricity_rate_cents_kwh"
    metadata:
      unit_of_measurement: "¢/h"
      device_class: "monetary"
      state_class: "total"

Major Components

  • StorageManager - Manages sensor set storage and configuration
  • SensorSet - Handle for individual sensor set operations
  • FormulaConfig/SensorConfig - Configuration classes for sensors and formulas
  • DataProviderResult - Type definition for data provider callbacks
  • SyntheticSensorsIntegration - Main integration class for standalone use

Home Assistant services

# Reload configuration
service: synthetic_sensors.reload_config

# Get sensor information
service: synthetic_sensors.get_sensor_info
data:
  entity_id: "sensor.span_panel_main_energy_cost_analysis"

# Update sensor configuration
service: synthetic_sensors.update_sensor
data:
  entity_id: "sensor.span_panel_main_energy_cost_analysis"
  formula: "updated_formula"

# Test formula evaluation
service: synthetic_sensors.evaluate_formula
data:
  formula: "A + B * 2"
  context: { A: 10, B: 5 }

Syntax Documentation

For detailed syntax examples and advanced usage patterns, see the Cookbook.

Integration Documentation

For detailed implementation examples, API documentation, and integration patterns, see the Integration Guide.

Troubleshooting

For configuration validation issues, development setup problems, and general troubleshooting, see the Troubleshooting Guide.

Contributions are welcome! Please see the Integration Guide for development setup and contribution guidelines.

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

ha_synthetic_sensors-1.1.8.tar.gz (287.9 kB view details)

Uploaded Source

Built Distribution

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

ha_synthetic_sensors-1.1.8-py3-none-any.whl (376.5 kB view details)

Uploaded Python 3

File details

Details for the file ha_synthetic_sensors-1.1.8.tar.gz.

File metadata

  • Download URL: ha_synthetic_sensors-1.1.8.tar.gz
  • Upload date:
  • Size: 287.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for ha_synthetic_sensors-1.1.8.tar.gz
Algorithm Hash digest
SHA256 14919703eaada4347c14ed01b3a1bf15a207c384eafff885bf08a29587ab02ea
MD5 4cc19062f4fd4eca30c013cc6e58ed31
BLAKE2b-256 b6b7ce1ac23e7ec21bcff5aa492ca922fbf8f98f0642bbbc73d366012314cf20

See more details on using hashes here.

Provenance

The following attestation bundles were made for ha_synthetic_sensors-1.1.8.tar.gz:

Publisher: release.yml on SpanPanel/ha-synthetic-sensors

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ha_synthetic_sensors-1.1.8-py3-none-any.whl.

File metadata

File hashes

Hashes for ha_synthetic_sensors-1.1.8-py3-none-any.whl
Algorithm Hash digest
SHA256 2615ff479714ebacad36229ceda6a02f6564f99ad70b9c0a395a55239fe5b516
MD5 32f2911db74a940361c3b20fe9f771b4
BLAKE2b-256 9c88a16876fe966f3c59bedfaf5b29558d54c5ec8d8d0a2705ab91b9bd3daa99

See more details on using hashes here.

Provenance

The following attestation bundles were made for ha_synthetic_sensors-1.1.8-py3-none-any.whl:

Publisher: release.yml on SpanPanel/ha-synthetic-sensors

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

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