Skip to main content

Un-cloud your Whisker devices — fully-local MQTT control + telemetry for the Litter-Robot 4.

Project description

whiskerless

Un-cloud your Whisker devices. Fully-local MQTT control and telemetry for the Whisker Litter-Robot 4 — no cloud account, no internet round-trip, no third-party servers. Your robot talks to your broker, and that's it.

Primary repository: developed at forgejo.bryantserver.com/SisyphusMD/whiskerless. The GitHub copy is a read-only mirror (HACS installs from it). Please file issues and pull requests on GitHub — the Forgejo repository does not take external issues.

Status: beta. The local protocol was recovered by reverse-engineering and validated against a real robot. Re-provisioning, telemetry, settings, and the clean cycle are proven on hardware. A few discrete actions (power, empty, resets) are intentionally left out — see What's not here.


Why

Out of the box, a Litter-Robot 4 only works through Whisker's AWS cloud: every status update and every button press makes a round-trip to the internet, and Whisker actively blocks third-party clients. whiskerless cuts the cloud out entirely. The robot keeps its firmware; you just re-point its MQTT trust + broker at your own, over its own BLE provisioning channel — no teardown, no UART, no reflash, and fully reversible.

You get:

  • a Home Assistant integration (HACS) built to the Platinum quality bar — fully local, push-first, fully typed;
  • a whiskerless CLI + Python library to provision, monitor, read, and control a robot directly;
  • a complete, public protocol reference — the first published map of the LR4 local MQTT protocol.

How it works (30 seconds)

  BLE (one-time)        re-point trust + broker          runtime (forever after)
  your laptop  ───►  CA + host + topics over protocomm  ───►  robot ──MQTT/TLS──► your broker ──► Home Assistant

The robot stores all of its cloud identity in NVS and exposes esp-idf protocomm provisioning over BLE with no PIN. whiskerless writes your CA into its root-CA slot and your broker IP as its host, then commits. From then on the robot connects to your broker over TLS and speaks plain JSON — requestState, settings writes, clean cycle, and a live telemetry stream. Full detail in docs/how-it-works.md.

Install

Home Assistant (HACS)

  1. HACS → ⋮ → Custom repositories → add https://github.com/SisyphusMD/whiskerless as an Integration.
  2. Install Whiskerless, restart Home Assistant.
  3. Make sure Home Assistant's MQTT integration is connected to your broker.
  4. Provision each robot onto that broker (below). It then appears on its own under Settings → Devices & Services as a Discovered device — click Add and give it a name. No broker details or serials to type.

See docs/setup/ for the broker, certificate, and discovery details.

The "app" — no Python needed (for provisioning)

Re-provisioning happens over Bluetooth from a computer near the robot. Grab the build for your OS from the releases page — Forgejo (primary) or GitHub (mirror):

  • macOS — download the signed installer for your chip (whiskerless-macos-arm64.pkg for Apple Silicon, whiskerless-macos-x86_64.pkg for Intel), double-click to install, then run it in any terminal:

    whiskerless provision      # prompts for everything
    

    It's signed and notarized by Apple, so there's no "unidentified developer" warning. The first time it scans, macOS asks to let your terminal use Bluetooth — allow it. To update later, just download the newer .pkg and double-click — it installs over the old one in place.

  • Linux — download whiskerless-linux-x86_64 and run it:

    chmod +x ./whiskerless-linux-x86_64
    ./whiskerless-linux-x86_64 provision
    
  • Windows — no standalone binary, but the PyPI CLI works nativelybleak drives Windows' built-in Bluetooth:

    uvx whiskerless provision
    

    (Don't run the Linux binary under WSL: WSL can't reach the Bluetooth adapter, so provisioning won't work there.)

Prefer not to install anything? uvx whiskerless provision runs it one-shot.

CLI / library (PyPI)

uvx whiskerless provision         # one-shot, no install
pipx install whiskerless          # CLI on your PATH
pip install 'whiskerless[ble]'    # library + BLE re-provisioning

Quickstart (CLI)

# 1. Re-provision the robot onto your broker (one-time, over BLE).
#    Prompts for anything you omit; --host-ip is your broker's address.
whiskerless provision --serial LR4Cxxxxxx --host-ip <broker-ip> --ca ca.crt --wifi-ssid MyIoT

# 2. Watch it.
whiskerless monitor --serial LR4Cxxxxxx --host <broker-ip> --ca ca.crt

# 3. Read its decoded state.
whiskerless state --serial LR4Cxxxxxx --host <broker-ip> --ca ca.crt

# 4. Change a setting (writes, then reads back to confirm).
whiskerless set night-light-mode auto --serial LR4Cxxxxxx --host <broker-ip> --ca ca.crt

# 5. Run a clean cycle (asks for confirmation first).
whiskerless clean-cycle --serial LR4Cxxxxxx --host <broker-ip> --ca ca.crt

Safety first

This library can put commands on the wire that drive a motor or, in the worst case, brick a control board. So it guards every send:

  • Three opcodes are refused unconditionally (0xAC, 0xA4, 0xAD — flash erase, globe-motor OTA, hardware reset). No flag lets them through.
  • The clean cycle (the only motor command) requires explicit opt-in and the CLI/integration gate it behind a confirmation.
  • Untraced / control-band / calibration writes are refused unless you override them on purpose.

The guard lives in safety.py and both the CLI and the integration funnel through it — see docs/devices/litter-robot-4/.

What's not here

Power on/off, the empty cycle, and the panel/drawer resets are deliberately omitted. Reverse-engineering could not pin their exact register+value to safe, actionable confidence (the relevant firmware partition is physically absent from the public image and the candidates are unproven and contradictory). Shipping them as guesses would risk dangerous control-band writes. They're tracked as open items with a clear path to close them — see docs/devices/litter-robot-4/compatibility.md and the issue templates. Contributions welcome.

Repository layout

whiskerless/
├─ src/whiskerless/            # the pip library (codec, MQTT, BLE, safety, CLI)
│  └─ devices/litter_robot_4/  # LR4 protocol: codec, commands, state model, link
├─ custom_components/whiskerless/  # the Home Assistant integration (depends on the lib)
├─ docs/                       # protocol reference + setup + recovery guides
├─ examples/                   # example automations
└─ tests/                      # codec / safety / command / integration tests

Documentation

Adding another Whisker device

The library is structured so a new robot drops in under src/whiskerless/devices/<x>/ (codec + commands + state model) and custom_components/whiskerless/devices/<x>.py, reusing the shared MQTT transport, BLE provisioning, and safety guard. See CONTRIBUTING.md.

License

MIT. Not affiliated with or endorsed by Whisker. "Litter-Robot" is a trademark of its respective owner; this project is independent and interoperates with hardware you own.

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

whiskerless-0.1.1.tar.gz (80.3 kB view details)

Uploaded Source

Built Distribution

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

whiskerless-0.1.1-py3-none-any.whl (41.5 kB view details)

Uploaded Python 3

File details

Details for the file whiskerless-0.1.1.tar.gz.

File metadata

  • Download URL: whiskerless-0.1.1.tar.gz
  • Upload date:
  • Size: 80.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.13

File hashes

Hashes for whiskerless-0.1.1.tar.gz
Algorithm Hash digest
SHA256 65998bcc006bab41a30424c43a19e2b7df4a20040a0f300f8442a9c9a7464782
MD5 f26a8ebb4dc46ed05595666f843208ac
BLAKE2b-256 46bcfe159ff71a05f862438ff8844e68a2732d4466a1ee45eb944dd2af9f0087

See more details on using hashes here.

File details

Details for the file whiskerless-0.1.1-py3-none-any.whl.

File metadata

  • Download URL: whiskerless-0.1.1-py3-none-any.whl
  • Upload date:
  • Size: 41.5 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.13

File hashes

Hashes for whiskerless-0.1.1-py3-none-any.whl
Algorithm Hash digest
SHA256 3e0a4e01ed84bdbbd6b8f1dfd88c4ab9bbd365c9fb48f0eaddae1dcafa3362e0
MD5 59862177b1aaa33f3db2ad47913a54aa
BLAKE2b-256 196d1c6aa07e8a485f2630ce3df09bb3a6d418033151f0e4017d6540662a06f3

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