Skip to main content

Interactive controller for Crestron SWAMP media amplifier systems

Project description

SWAMP Controller

Interactive command-line controller for Crestron SWAMP media amplifier systems.

Features

  • Interactive Shell: User-friendly command prompt with autocomplete
  • TCP Server: Listens for connections from SWAMP devices
  • State Management: Maintains local state synchronized with device
  • Multi-zone Support: Commands automatically broadcast to all zones in a target
  • Pluggable Protocol: Protocol handler designed for easy extension
  • Home Assistant Integration: Native HA integration with media player entities

Home Assistant Integration

This project includes a Home Assistant integration that exposes your Crestron SWAMP system as media player entities in Home Assistant. Each target (room/zone) appears as a controllable media player with volume control, source selection, and power control.

Installation via HACS (Recommended)

hacs_badge PyPI

Note: This is a custom HACS repository. You need to add it manually using the instructions below.

  1. Ensure HACS is installed in your Home Assistant instance
  2. Add this repository as a custom repository in HACS:
    • Open HACS in Home Assistant
    • Go to "Integrations"
    • Click the three dots menu (top right) and select "Custom repositories"
    • Add https://github.com/jaroy/swamp-controller as an Integration
    • Click "Add"
  3. Find "Crestron SWAMP Controller" in HACS and click "Download"
  4. Restart Home Assistant
  5. Add the integration through Settings > Devices & Services > Add Integration

The crestron-swamp-controller package will be automatically installed from PyPI when you add the integration.

See HOMEASSISTANT.md for more detailed installation instructions and configuration options.

Features

  • Media player entity for each target/zone
  • Real-time state updates from SWAMP device
  • Volume control (0-100%)
  • Source selection from configured sources
  • Power on/off control
  • Device availability tracking

CLI Installation

  1. Ensure Python 3.12+ is installed
  2. Create and activate virtual environment:
    python -m venv .venv
    source .venv/bin/activate  # On Linux/Mac
    # or
    .venv\Scripts\activate  # On Windows
    
  3. Install dependencies:
    pip install -r requirements.txt
    

Configuration

Edit config/config.yaml to define your audio sources and target zones:

# Volume (0-100) a zone is set to when its player is turned on, so enabling a zone
# isn't silent. Optional (defaults to 40); can be overridden per target.
default-volume: 40

sources:
  - id: music-a
    name: Player A
    swamp-source-id: 4

targets:
  - id: office-terrace
    name: Office Terrace
    default-volume: 30   # optional per-zone override
    swamp-zones:
      - unit: 3
        zone: 1

On the SWAMP

We have to tell the SWAMP to connect to us instead of a Crestron processor. Use these TELNET commands:

adds 51 <IP address> 4 <port>
reboot

Note that you can see the currently configured controller with the ipt command:

$ telnet 192.168.1.89
Trying 192.168.1.89...
Connected to 192.168.1.89.
Escape character is '^]'.

SWAMP Control Console
Connected to Host: SWAMP-00107FE7C4CD

SWAMP>ipt
CIP_ID  Type    Status     DevID  Port   IP Address/SiteName
    51  GWAY    ONLINE        4   41794  010.194.005.251

Usage

Start the controller:

python -m swamp

Or with custom port:

python -m swamp --port 41794

Or with custom config:

python -m swamp --config /path/to/config.yaml

Available Commands

Once the shell is running, you can use these commands:

Route audio source to target

route <source-id> <target-id>

Example: route music-a office

Set volume

volume <target-id> <level>

Example: volume office 75

Adjust volume relatively

volume <target-id> +/-<delta>

Example: volume office +10 or volume office -5

Power control

power <target-id> on <source-id>
power <target-id> off

Power on requires a source (zones need a source to be "on"). Power off sets the source to 0.

Examples:

  • power office on music-a - Power on office with music-a as source
  • power office off - Power off office

Show status

status [target-id]

Example: status office or status (shows all)

Send WHOIS request

whois

Sends a WHOIS request (0f 00 01 02) to the connected SWAMP device. This is automatically sent when a device connects.

List sources or targets

list sources
list targets

Get help

help

Exit

quit

Architecture

The controller works by impersonating a Crestron processor gateway, e.g. a Crestron CP3. The client is the SWAMP and it connects to our server which then establishes the communication link.

User Shell (REPL)
       ↓
Controller (orchestration)
       ↓
State Manager (zone/source mapping)
       ↓
Protocol Handler (pluggable)
       ↓
TCP Server (asyncio)

Components

  • Models: Data classes for configuration and state
  • Core: Configuration loading, state management, orchestration
  • Protocol: Abstract protocol handler with stub implementation
  • Network: Asyncio TCP server for SWAMP device connections
  • Shell: Command parser and interactive REPL

Protocol Implementation

The Protocol Handler partially implements the Crestron Internet Protocol (CIP), a proprietary protocol for communication between Crestron devices. Only the message types for basic control of the SWAMP system are implemented.

Message Format

All CIP messages follow this format:

  • Byte 0: Message type
  • Bytes 1-2: Remaining length (total bytes - 3) in big-endian
  • Bytes 3+: Payload

Example: 0a 00 0a 00 51 a3 42 40 02 00 00 00 00

  • Type: 0x0a (CLIENT_SIGNON)
  • Length: 0x00 0x0a = 10 bytes remaining
  • Payload: 00 51 a3 42 40 02 00 00 00 00 (10 bytes)
  • Total: 1 + 2 + 10 = 13 bytes

Implemented Messages

  • WHOIS (0f 00 01 02) - Sent automatically when client connects, also available via whois command
  • PING (0d 00 02 00 00) - Automatically detected and triggers PONG response. Sent periodically in the background.
  • PONG (0e 00 02 00 00) - Sent automatically in response to PING
  • CLIENT_SIGNON (0a ...) - Sent by device on connect, triggers CONN_ACCEPTED response
  • CONN_ACCEPTED (02 00 04 00 00 00 03) - Sent automatically in response to CLIENT_SIGNON
  • JOIN (05 ...) - The actual control messages for setting and getting information about the SWAMP

Unknown Message Handling

Any message not recognized will be printed to the console in hex format, making it easy to discover and implement new message types.

Example output:

Unknown message type ff (4 bytes): ff aa bb cc
Recognized but unimplemented message type 0a (13 bytes): 0a 00 0a 00 51 a3 42 40 02 00 00 00 00

Adding New Message Types

To add support for a new message type, edit swamp/protocol/swamp_protocol.py:

  1. Add the message type to decode_message() dispatcher
  2. Create a _decode_message_type_XX() method
  3. Implement encoding methods if needed:
    • encode_route_command() - Route audio source to zone
    • encode_volume_command() - Set zone volume
    • encode_power_command() - Control zone power

Development

Run tests:

pytest

The test suite uses dynamic port allocation (via get_free_port()) to avoid conflicts with running instances of the controller.

Enable debug logging:

python -m swamp --log-level DEBUG

Run on a different port:

python -m swamp --port 41795

License

Copyright © 2025

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

crestron_swamp_controller-1.1.0.tar.gz (26.4 kB view details)

Uploaded Source

Built Distribution

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

crestron_swamp_controller-1.1.0-py3-none-any.whl (22.3 kB view details)

Uploaded Python 3

File details

Details for the file crestron_swamp_controller-1.1.0.tar.gz.

File metadata

File hashes

Hashes for crestron_swamp_controller-1.1.0.tar.gz
Algorithm Hash digest
SHA256 871e826e9b193c6b21e1b710c2d81b978b2af7927ee2cf4e8d2618d91a132710
MD5 bcf684d7ef66558e0fcc66cdd34f748e
BLAKE2b-256 1d6492aed15716afa1b0f880ea08b807241e5b7324c61de5f1df7f83daa63f68

See more details on using hashes here.

Provenance

The following attestation bundles were made for crestron_swamp_controller-1.1.0.tar.gz:

Publisher: publish-pypi.yml on jaroy/swamp-controller

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

File details

Details for the file crestron_swamp_controller-1.1.0-py3-none-any.whl.

File metadata

File hashes

Hashes for crestron_swamp_controller-1.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 df5d75915bb44b13ddde943d4175453243b26cd31d2ae8ebf983a3a685540396
MD5 7e31fd9f44d8f5ae7b07a5179c1b21f1
BLAKE2b-256 a8170787cf62c716a6871b415611bd919b4e95b344db4b0df4569379a26eec89

See more details on using hashes here.

Provenance

The following attestation bundles were made for crestron_swamp_controller-1.1.0-py3-none-any.whl:

Publisher: publish-pypi.yml on jaroy/swamp-controller

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