Skip to content

markus-lassfolk/python-yarbo

Repository files navigation

python-yarbo

CI PyPI version Python versions License: MIT

Python library for local MQTT control of Yarbo robot mowers and snow blowers — a community-developed project.

Status: 2026.3.10 — Local control only. Cloud integration modules are included but experimental and not fully tested. Do not rely on cloud features in production. Cloud support will be validated in a future release.

⚠️ Disclaimer: This is a community-driven Python library and is not affiliated with, endorsed by, or supported by Yarbo Inc. or any of its subsidiaries.

Features

  • 🔌 Local MQTT control — no cloud account required
  • 💡 Full LED control — 7 independent channels (head, fill, body, tail)
  • 🔊 Buzzer control
  • 🌨️ Snow chute direction (snow blower models)
  • 📡 Live telemetry stream — battery, state, position, heading
  • 🔍 Auto-discovery — finds Yarbo brokers on your local network
  • ☁️ Cloud API — robot management, scheduling, notifications
  • Async-first — built on asyncio with sync wrappers for scripts
  • 🏠 Home Assistant ready — see home-assistant-yarbo (coming soon)

Requirements

  • Python ≥ 3.11
  • Same network as the robot (for local control). Relies on broadcast messages for auto-discovery.
  • paho-mqtt ≥ 2.0 (included)
  • aiohttp ≥ 3.9 (included)

Installation

pip install python-yarbo

For cloud API features (RSA password encryption):

pip install "python-yarbo[cloud]"

Quick Start

Async (recommended)

import asyncio
from yarbo import YarboClient

async def main():
    async with YarboClient(broker="<rover-ip>", sn="YOUR_SERIAL") as client:
        # Get a telemetry snapshot
        status = await client.get_status()
        if status:
            print(f"Battery: {status.battery}%  State: {status.state}")

        # Light control
        await client.lights_on()
        await asyncio.sleep(2)
        await client.lights_off()

        # Buzzer
        await client.buzzer(state=1)

        # Live telemetry stream
        async for telemetry in client.watch_telemetry():
            print(f"Battery: {telemetry.battery}%  Heading: {telemetry.heading}°")
            if telemetry.battery and telemetry.battery < 20:
                print("Low battery!")
                break

asyncio.run(main())

Sync (scripts / REPL)

from yarbo import YarboClient

client = YarboClient.connect_sync(broker="<rover-ip>", sn="YOUR_SERIAL")
client.lights_on()
client.buzzer()
client.disconnect()

Auto-discovery

import asyncio
from yarbo import discover_yarbo, YarboClient

async def main():
    print("Scanning for Yarbo robots...")
    robots = await discover_yarbo()  # scans host's local networks; or pass subnet="192.0.2.0/24"

    if not robots:
        print("No robots found")
        return

    print(f"Found: {robots[0]}")
    async with YarboClient(broker=robots[0].broker_host, sn=robots[0].sn) as client:
        await client.lights_on()

asyncio.run(main())

Cloud login (account management)

import asyncio
from yarbo import YarboCloudClient

async def main():
    async with YarboCloudClient(
        username="your@email.com",
        password="yourpassword",
        rsa_key_path="/path/to/rsa_public_key.pem",  # see keys/README.md
    ) as client:
        robots = await client.list_robots()
        for robot in robots:
            print(f"{robot.sn}: {robot.name} (online: {robot.is_online})")

        version = await client.get_latest_version()
        print(f"App: {version['appVersion']}  Firmware: {version['firmwareVersion']}")

asyncio.run(main())

API Reference

YarboClient (hybrid)

Method Description
async with YarboClient(broker, sn) Connect via async context manager
await client.get_status() Single telemetry snapshot → YarboTelemetry
await client.watch_telemetry() Async generator of YarboTelemetry
await client.start_polling(..., acquire_controller=False) Start get_device_msg keepalive (no get_controller by default)
await client.stop_polling() Stop telemetry polling
client.is_polling True if polling is active
await client.lights_on() All LEDs → 255
await client.lights_off() All LEDs → 0
await client.set_lights(YarboLightState) Per-channel LED control
await client.buzzer(state=1) Buzzer on (1) or off (0)
await client.set_chute(vel) Snow chute direction
await client.get_controller() Acquire controller (optional; call before sending commands)
await client.publish_raw(cmd, payload) Arbitrary MQTT command
await client.list_robots() Cloud: bound robots
YarboClient.connect_sync(broker, sn) Sync wrapper factory

YarboLocalClient (MQTT-only)

Same interface as YarboClient, local only, no cloud features. Optional constructor args for troubleshooting: debug / debug_raw (print every MQTT message to stderr), mqtt_log_path (append raw messages to a file), mqtt_capture_max (buffer last N messages for get_captured_mqtt() e.g. for GlitchTip reports). See Debug and troubleshooting.

Telemetry without the mobile app: The robot only streams DeviceMSG (~1 Hz) while the app is connected. When the app is closed, it falls back to heart_beat only. To keep telemetry flowing (e.g. for Home Assistant or scripts), use telemetry polling:

async with YarboLocalClient(broker="192.168.1.24", sn="YOUR_SERIAL") as client:
    # Optional: start polling (idle 10 s; when robot active, 1 s for live telemetry)
    await client.start_polling(interval_seconds=10.0)  # 1–3600 s
    async for telemetry in client.watch_telemetry():
        print(f"Battery: {telemetry.battery}%")
        if some_condition:
            break
    await client.stop_polling()  # or just exit the context manager

If you only use watch_telemetry() without calling start_polling(), the client will auto-start polling after ~5 seconds with no telemetry. get_status() and start_polling() do not call get_controller by default, so the mobile app can stay in control while you receive telemetry. Use acquire_controller=True or call get_controller() only when you need to send commands (lights, buzzer, plans, etc.). See Telemetry and brokers.

YarboLightState

from yarbo import YarboLightState

# All on
state = YarboLightState.all_on()

# Custom
state = YarboLightState(
    led_head=255,      # Front white
    led_left_w=128,    # Left fill white
    led_right_w=128,   # Right fill white
    body_left_r=255,   # Left body red
    body_right_r=255,  # Right body red
    tail_left_r=0,     # Left tail red
    tail_right_r=0,    # Right tail red
)
async with YarboClient(...) as client:
    await client.set_lights(state)

YarboTelemetry

Parsed from DeviceMSG nested schema (BatteryMSG, StateMSG, RTKMSG, CombinedOdom).

Field Type Source Description
battery int | None BatteryMSG.capacity State of charge (0–100 %)
state str | None derived "idle" or "active"
working_state int | None StateMSG.working_state Raw state (0=idle, 1=active)
charging_status int | None StateMSG.charging_status 2 = charging/docked
error_code int | str | None StateMSG.error_code Active fault code
heading float | None RTKMSG.heading Compass heading (degrees)
position_x float | None CombinedOdom.x Odometry X (metres)
position_y float | None CombinedOdom.y Odometry Y (metres)
phi float | None CombinedOdom.phi Odometry heading (radians)
speed float | None flat Current speed (m/s)
raw dict Complete raw DeviceMSG dict

Cloud vs Local

Feature Local MQTT Cloud REST
Robot control (lights, buzzer, …) ✅ Yes ❌ No
Live telemetry ✅ Yes ❌ No
List bound robots ❌ No ✅ Yes
Account management ❌ No ✅ Yes
Robot rename / bind / unbind ❌ No ✅ Yes
Notifications ❌ No ✅ Yes
Works offline ✅ Yes ❌ No
Requires cloud account ❌ No ✅ Yes

⚠️ Cloud MQTT not implemented. The Yarbo backend also provides a Tencent TDMQ MQTT broker (mqtt-b8rkj5da-usw-public.mqtt.tencenttdmq.com:8883) for remote control without LAN access. This library does not implement cloud MQTT — there is no remote-control fallback. All robot commands go via the local broker only.

Security Notes

⚠️ The Yarbo local MQTT broker accepts anonymous connections without authentication. Anyone on your WiFi network can connect and send commands to your robot.

Recommendations:

  • Keep the robot on a dedicated IoT VLAN and firewall it from the internet.
  • Do not port-forward port 1883 to the internet.
  • Consider a firewall rule that allows only your home automation host to reach port 1883 on the robot's IP.

Protocol Notes

Key protocol facts (community-observed):

  • MQTT broker: Local EMQX (port 1883). Use yarbo discover (scans host networks) or yarbo discover --subnet <CIDR> to find Rover/DC endpoints; IPs are DHCP-assigned.
  • Payload encoding: zlib.compress(json.dumps(payload).encode()) (exception: heart_beat topic uses plain uncompressed JSON)
  • Controller handshake: get_controller must be sent before action commands
  • Topics: snowbot/{SN}/app/{cmd} (publish) and snowbot/{SN}/device/{feedback} (subscribe)
  • Telemetry topic: DeviceMSG (~1–2 Hz) with nested schema: BatteryMSG.capacity, StateMSG.working_state, RTKMSG.heading, CombinedOdom.x/y/phi
  • Not yet implemented: Local REST API (port 8088) and TCP JSON (port 22220) are not yet implemented here
  • Telemetry and brokers: See Telemetry, get_device_msg, and brokers for who receives responses (topic-based; any subscriber) and using two broker IPs (Rover vs DC).

Debug and troubleshooting

The CLI and library support debug logging and sending MQTT dumps to GlitchTip so you can inspect traffic and help maintainers support firmware/configurations they cannot test locally.

Debug logging (see what’s sent and received)

  • --debug (or YARBO_DEBUG=1 / true / yes): every MQTT message sent and received is printed to stderr in human-readable form (topic + pretty-printed JSON payload).
  • --raw (or YARBO_DEBUG_RAW=1): together with debug, each message is printed as a single JSON line (no formatting), e.g. for piping or log files.

Environment variables apply when the flag is not given, so you can leave YARBO_DEBUG=1 set while developing.

# Human-readable on stderr
yarbo status --broker 192.168.1.1 --sn ABC123 --debug

# Same via env (no need to pass --debug every time)
YARBO_DEBUG=1 yarbo status --broker 192.168.1.1 --sn ABC123

# Raw one-line JSON per message
yarbo status --broker 192.168.1.1 --sn ABC123 --debug --raw

From Python you can enable the same behaviour by passing debug=True (and optionally debug_raw=True) into YarboLocalClient:

from yarbo import YarboLocalClient

client = YarboLocalClient(
    broker="192.168.1.1", sn="ABC123",
    debug=True, debug_raw=False,
)
await client.connect()
# ... all MQTT traffic is printed to stderr

Logging raw MQTT to a file

  • --log-mqtt FILE: appends every raw MQTT message (topic + decoded payload JSON, one JSON object per line) to the given file. Useful for offline comparison or scripting.
yarbo status --broker 192.168.1.1 --sn ABC123 --log-mqtt mqtt_log.jsonl

Sending an MQTT dump to GlitchTip (for support)

When reporting a bug or asking for support for a firmware/head type the maintainers don’t have, you can send a full MQTT dump so they can see exactly what the robot sends and receives.

  • --report-mqtt: for that command run, up to 1000 MQTT messages are captured; at the end of the run they are sent to GlitchTip (Sentry) as an info-level event. Sensitive keys (e.g. password, token) in payloads are redacted before send.

Requirements: GlitchTip/Sentry must be enabled (e.g. YARBO_SENTRY_DSN or SENTRY_DSN set). If the DSN is not set, the flag is ignored and no data is sent.

# Capture status command traffic and send dump to GlitchTip
yarbo status --broker 192.168.1.1 --sn ABC123 --report-mqtt

From Python you can capture and send a dump yourself using report_mqtt_dump_to_glitchtip from yarbo.error_reporting, and client.get_captured_mqtt() when the client was created with mqtt_capture_max > 0 (see YarboLocalClient and MqttTransport parameters).

See protocol documentation for additional protocol details.

Related Projects

Project Description
home-assistant-yarbo Home Assistant integration (coming soon)
PSYarbo PowerShell module (same protocol, same architecture)

License

MIT — see LICENSE.

Disclaimer

This is a community project, not affiliated with or endorsed by Yarbo. Use at your own risk. Do not expose your robot's MQTT broker to the internet.

About

Python library for local control of Yarbo robot mowers via MQTT

Topics

Resources

License

Contributing

Security policy

Stars

Watchers

Forks

Packages

 
 
 

Contributors

Languages