Skip to main content

Async client for old Samsung air conditioners using the DPLUG/AC14K protocol (TLS, port 2878)

Project description

pysamsung-dplug

Async Python client for old Samsung air conditioners that speak the legacy DPLUG / AC14K protocol over TLS on port 2878 (Wi-Fi modules such as SWL-B70F, used by the AR**HSFS generation, ~2013–2015).

These units were dropped by SmartThings. This library lets you control them locally again — no cloud. It is the protocol layer used by the samsung_ac_dplug Home Assistant integration, but works standalone.

Features

  • Mutual-TLS handshake with the bundled Samsung client certificate (legacy TLS 1.0 / weak ciphers handled for you).
  • Token acquisition (GetToken), authentication (AuthToken).
  • Read full device state (DeviceState) and send commands (DeviceControl).
  • Auto-discover the device id (DeviceList) and a passive async_probe().
  • Live push updates with auto-reconnect (SamsungAcStream), alongside the short-lived-connection SamsungAcClient.
  • On-device scheduling: read, create/edit and delete the unit's built-in schedules, with local↔UTC time conversion.
  • Capability decoding from AC_ADD2_OPTIONCODE (OptionCode), the device clock, firmware versions, and Wi-Fi provisioning for AP-mode onboarding.

Install

pip install pysamsung-dplug

Usage

import asyncio
from samsung_dplug import SamsungAcClient, build_ssl_context

async def main():
    ctx = build_ssl_context()                      # uses the bundled certificate
    client = SamsungAcClient("192.168.1.53", token="xxxxxxxx-....", ssl_context=ctx)
    state = await client.async_get_state()
    print("Power:", state["AC_FUN_POWER"], "Room:", state["AC_FUN_TEMPNOW"])
    await client.async_set("AC_FUN_POWER", "On")

asyncio.run(main())

Getting a token

The unit only issues a token at power-on (a physical proof-of-access step):

client = SamsungAcClient("192.168.1.53", ssl_context=ctx)
# turn the unit OFF, call this, then turn it ON within ~30 s:
token = await client.async_get_token()

build_ssl_context() does blocking file I/O; inside async frameworks run it in an executor (e.g. Home Assistant: await hass.async_add_executor_job(build_ssl_context)).

On-device schedules

The unit has a built-in scheduler that runs off its own clock, even with nothing connected. Times are stored in UTC; pass your local tzinfo and the library converts both ways.

from zoneinfo import ZoneInfo
from samsung_dplug import Schedule, EVERYWEEK, weekdays_to_mask

tz = ZoneInfo("Europe/Rome")
await client.async_get_schedules(tz=tz)            # -> list[Schedule] (local time)
await client.async_set_schedule(                   # turn on at 07:00 on weekdays
    Schedule(hour=7, minute=0, repeat=EVERYWEEK,
             days=weekdays_to_mask(range(5)),       # Mon–Fri
             attrs={"AC_FUN_POWER": "On"}),
    tz=tz,
)
await client.async_delete_schedule("0")

Protocol notes

Reverse-engineered from the official Smart Air Conditioner app and live devices. The unit greets with DPLUG-1.x, requires mutual TLS, and uses an XML request/response protocol. The DUID equals the Wi-Fi module MAC without separators. See the Home Assistant integration repo for the full write-up.

License

MIT

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

pysamsung_dplug-0.8.0.tar.gz (20.8 kB view details)

Uploaded Source

Built Distribution

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

pysamsung_dplug-0.8.0-py3-none-any.whl (23.5 kB view details)

Uploaded Python 3

File details

Details for the file pysamsung_dplug-0.8.0.tar.gz.

File metadata

  • Download URL: pysamsung_dplug-0.8.0.tar.gz
  • Upload date:
  • Size: 20.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for pysamsung_dplug-0.8.0.tar.gz
Algorithm Hash digest
SHA256 3755a39a508155e736c98b31439b706296e09f2d63468404f4b1fe74c8fba8d6
MD5 565f9e4cbb4d882549134a7400c70633
BLAKE2b-256 9571ef0e8801e47a2179e2a5005cb4f880e3c433896f975cb8877dc657e327d4

See more details on using hashes here.

Provenance

The following attestation bundles were made for pysamsung_dplug-0.8.0.tar.gz:

Publisher: publish.yml on porech/pysamsung-dplug

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

File details

Details for the file pysamsung_dplug-0.8.0-py3-none-any.whl.

File metadata

  • Download URL: pysamsung_dplug-0.8.0-py3-none-any.whl
  • Upload date:
  • Size: 23.5 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for pysamsung_dplug-0.8.0-py3-none-any.whl
Algorithm Hash digest
SHA256 ce3ced792ae499154dbcf3705503b1dd57dba38032e120bfc4f19421cedb5b66
MD5 5335fe92650b8c9dd5f75fed3262d06c
BLAKE2b-256 3c9ccf4555cd27ea8caaedfc9f5eb82b4fdd411942fb27f69fe04f66b3191221

See more details on using hashes here.

Provenance

The following attestation bundles were made for pysamsung_dplug-0.8.0-py3-none-any.whl:

Publisher: publish.yml on porech/pysamsung-dplug

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