Skip to content

Releases: Galusz/sensmos-homeassistant

v0.4.6

24 Jun 07:41

Choose a tag to compare

Add MIT LICENSE (HACS default catalog requirement). Validation actions (HACS + hassfest) passing.

v0.4.5

24 Jun 07:30

Choose a tag to compare

HACS publishing readiness: add HACS + hassfest validation workflows (both passing), sort manifest keys, remove angle-brackets from translation strings. Brand assets bundled per Brands Proxy API.

v0.4.4

24 Jun 07:16

Choose a tag to compare

Bundle brand assets (icon/logo) in custom_components/sensmos/brand/ per the Home Assistant Brands Proxy API (HA 2026.3+). No more home-assistant/brands PR needed for custom integrations.

v0.4.3

24 Jun 07:08

Choose a tag to compare

Fix manifest: codeowners → @Galusz, GitHub issue tracker. Remove an accidental nested duplicate folder. Preparation for HACS default listing.

v0.4.2

22 Jun 14:03

Choose a tag to compare

Fix: selecting 'Data only' returned 400 Bad Request on HA 2026.6 (the lat/lon NumberSelector was rejected when building the form). Lat/lon are now plain number inputs. Redownload + restart HA.

v0.4.1

22 Jun 12:44

Choose a tag to compare

Big update since v0.1.0.

Two setup modes

  • 🔌 Physical node — connect a Sensmos ESP32 on your LAN (read its data, feed HA sensors back to it).
  • 🟣 Data only — no hardware: push selected HA sensors to the live map as a software node.

Highlights

  • Node's own entities (pub.* / own.*) and subscription data (sub.*) as HA sensors.
  • Feed any HA sensor → a node entity, with automatic unit conversion; subscribe to other nodes.
  • Data-only mode: publish HA sensors to the map (purple node).
  • 👁️ Preview another node — read any node's published data (real or software) into HA as read-only sensors (long poll, no GALU). New in 0.4.x.
  • PL/EN UI, node events as HA events.

Install/update via HACS, then restart Home Assistant.

v0.1.0

15 Jun 18:27
6c68cb9

Choose a tag to compare

Sensmos — Home Assistant integration (HACS)

Connect a Sensmos ESP32 node to Home Assistant — locally, no cloud, no broker. The integration talks to the node's HTTP API on your LAN.

Sensmos is a DePIN sensor network: nodes publish data, earn GALU, and can subscribe to each other. This integration brings that into Home Assistant both ways — read node data in HA, and feed HA data to the node.

Features

  • Your node's own data as sensors — the node's native (pub.*) and custom (own.*) entities show up in HA automatically (entities you feed from HA are skipped to avoid loops).
  • Feed the node from HA — map any HA sensor → a node entity (native pub.* or custom own.*). Units are converted automatically (kW→W, mV→V, °F→°C…). Binary sensors (motion, door…) are sent as 1/0. No automations to write — the integration tracks state changes and refreshes every 5 min.
  • Subscription sensors — data your node subscribes to from other nodes (sub.* / your prefix) appears as HA sensors as soon as it arrives.
  • Subscribe from HA — pick a target node's device ID, preview its entities, confirm; sensors appear on their own.
  • Node status — GALU available / claimable, uptime, online, backend (WS) connectivity.
  • Node events as HA eventssensmos_event (batch_sent, sub_received, ws_connected) and sensmos_message (incoming message) for automations. The webhook is configured on the node automatically.

Installation

  1. HACS → Integrations → ⋮ → Custom repositories → add this repo (category Integration).
  2. Install Sensmos, then restart Home Assistant.
  3. Settings → Devices & Services → Add IntegrationSensmos.
  4. Enter the node address (the IP shown in the Sensmos app, or sensmos-xxxxxx.local) and the PIN.

The device and its sensors appear immediately.

Feeding the node (entity mapping)

Settings → Devices & Services → Sensmos → Configure:

  • ➕ Feed a native entity (pub.*) — pick a network-rewarded native entity (with its unit), then a matching HA sensor; the picker is filtered to compatible sensors and units are converted automatically.
  • ➕ Feed a custom entity (own.*) — a name + any HA sensor or binary sensor. Stored on the node as own.<name> (usable in node scripts). The unit is taken from the HA entity; binary states become 1/0.
  • ➖ Remove a feed mapping.

Subscriptions

Configure → 📡 Subscribe to another node: enter the device ID, a local prefix (e.g. neighbor), and a number of days. You'll see the available entities and the cost; after confirming, data shows up in HA as neighbor_* sensors. Billed daily in GALU from the wallet pool.

Events

# Automation triggered by a message received by the node
trigger:
  - platform: event
    event_type: sensmos_message
action:
  - service: notify.mobile_app
    data:
      message: "Node received a message: {{ trigger.event.data }}"

Service sensmos.push

Send a value to the node manually (e.g. from an automation):

service: sensmos.push
data:
  entity_id: own.tariff
  value: "0.89"
  unit: "PLN/kWh"

Requirements

  • A Sensmos node on the same network (firmware with the HTTP API).
  • Home Assistant 2024.6+.

Links