Connects Sunseeker robotic lawn mowers (also rebranded as Adano, Brücke, etc.) to ioBroker through the official Sunseeker cloud. Both the legacy (Old) and current (New) Sunseeker APIs are supported, covering the S, X, V and V1 model classes.
- ioBroker js-controller
>= 6.0.11 - Admin
>= 7.0.23 - Node.js
>= 22 - Sunseeker cloud account (e-mail + password, same as in the mobile app)
The adapter settings expose the following fields:
| Field | Description |
|---|---|
| Username / e-mail | Sunseeker app login |
| Password | Sunseeker app password (stored encrypted) |
| Region | EU or US (only relevant for the New API) |
| API | New for current models (S/X/V/V1), Old for older devices |
| Polling interval | REST poll interval in seconds (minimum 30) |
| Language | UI and event-code language, e.g. de-DE, en-EN |
Which API to pick depends on the model:
New: all S, X, V and V1 series mowers (serverwirefree-specific.sk-robot.com/wirefree-specific-us.sk-robot.com)Old: older devices without Wirefree branding (serverserver.sk-robot.com)
- REST login (OAuth2 password grant) with automatic token refresh on a single
setInterval. - Per-account device list and status/settings polling at the configured interval.
- MQTT push:
NewAPI: TLS MQTT (port 1884 for SXV, 32884 for V1) with an RSA-encrypted password. After connect the adapter triggersgetDevAllProperties,getSelectRegionID,getAllPath,getConsumableItemsandgetFcStateviaget_propertyPOST so the full state is available immediately.OldAPI: plain MQTT onmqtts.sk-robot.com:1883with the hard-coded app user.
- Model classification into
S,X,V(incl. V18/V3) andV1. Endpoints and parameters (cmdurl, border mode, set-property path) are picked automatically. - Translated event codes: 12 language variants from the Home Assistant lang files are bundled in
lib/eventcodes.jsonand attached ascommon.statestoevent_codeanderrortype(model-aware) so the ioBroker UI shows readable labels.
For each mower (serial <sn>) the adapter creates these channels:
<sn>.general— raw device metadata from the device list (account ids, model, serial)<sn>.status— mower status (poll and MQTT push write into the same folder)<sn>.settings— device settings<sn>.remote— command buttons<sn>.schedule— weekly plan (writable, see below)<sn>.map— map data (only for S/X models, when available):info— raw response of/wireless_map/wireless_device/get(sizes, magnification,mapModifyTime, …)image— heatmap (PNG data URL; often empty if the cloud has not rendered one)wifi— WiFi signal heatmap (PNG data URL)net— 4G signal heatmap (PNG data URL)texture— raw texture map of the work area (WebP data URL)mapData— map geometry as raw JSON string (zones, polygons — same source HA uses to render its livemap)pathData— recorded mowing path as raw JSON stringbackup— backup map JSON (from/wireless_map/backup_map/get)livemap— adapter-rendered PNG data URL (zones, obstacles, recorded path, charger position; rendered withpureimage)
Raw payloads (REST and MQTT) are written through json2iob directly — no parallel adapter-side data model is maintained.
| State | Effect |
|---|---|
start |
Start mowing |
pause |
Pause |
dock |
Return to charging station |
stop_find_charger |
Cancel return-to-dock |
border |
Border cut (V models: mode 5 with value:true) |
stop |
Stop |
stop_task |
Cancel current task |
restart |
Restart task |
refresh |
Reload status now |
These settings are made writable directly under <sn>.settings.*. Writing them sends a set_property / setProperty (model-dependent) request to the cloud:
| State | Range | Unit | Notes |
|---|---|---|---|
bladeSpeed |
2800 – 3000 (step 100) | rpm | New API only |
bladeHeight |
20 – 100 (step 5) | mm | New API only |
rainFlag |
boolean | — | Old + New API |
rainDelayDuration |
0 – 720 (step 1) | min | Old + New API |
When writing blade values, the adapter posts { id: "setDevBlade", key: "blade", method: "set_property", speed|height: <int> }. After 1.5 s a status refresh is scheduled; MQTT push usually updates the values as well.
Writing rainFlag or rainDelayDuration always sends both values to the cloud (the missing one is read from the current state). The endpoint depends on the model:
Old:POST /app_mower/device/setRain/{sn}/{appId}withrainFlag+rainDelayDuration.NewV1:POST {cmdurl}setPropertywithmethod: "setRain",rainFlag,rainDelayDuration.NewS/X/V:POST {cmdurl}set_propertywithid: "setDevRain",key: "rain",rain_flag,delay.
A simple weekly plan with one window per day. The states are writable but the cloud is only updated when set is triggered.
| State | Type | Format |
|---|---|---|
monday … sunday |
string | "HH:MM-HH:MM" for the active window, empty string disables the day |
pause |
boolean | Pause the schedule without clearing the windows |
set |
button | Sends the current values to the cloud |
The dispatched payload depends on the model:
OldAPI:POST /app_mower/device-schedule/setSchedulingwithdeviceScheduleBOSfor all 7 days;autoFlagis the inverse ofpause.NewV1:POST {cmdurl}setPropertywithmethod: "setSchedule"anddeviceScheduleBOScontaining only the active days.NewS/X/V:POST {cmdurl}set_propertywithid: "setTimeTactics",key: "time_tactics"and atimearray (one entry per active day, day index Mon=1…Sat=6, Sun=0; start/end as seconds since midnight).
The Sunseeker API exposes far more fields than the adapter currently writes. All settings are available read-only as raw data under <sn>.settings. The following are not yet exposed as writable states:
- Zone settings (per-zone blade speed/height, ordering)
- OTA update
- Work records / mowing history
- V1-specific settings: return path, screen lock, border distance, schedule on/off
- Gen2 settings: auto_ride_edge, energy_save, night_work
- AI sensitivity, PIN code, map operations
| Area | Endpoints | Used? |
|---|---|---|
| Auth | POST /auth/oauth/token (login + refresh), auth/mobile/token/social |
Yes |
| Device list | GET /app_wireless_mower/device-user/getCustomDevice, …/list, …/{id}, …/remark |
Yes (getCustomDevice) |
| Status | GET /app_wireless_mower/device/getBysn, …/info/{id}, …/check, …/readWeakSignal, …/getSignalType |
Yes (getBysn) |
| Settings (read) | GET /app_wireless_mower/device-setting/{sn}, …/getTime/{sn}, device/getDeviceSettingBySn, device-configuration/getBySn/{sn}, device-model/getByClientName |
Yes (device-setting/{sn}) |
| Settings (write, New) | POST /iot_mower/wireless/device/set_property (S/X/V), POST /app_wirelessv1_mower/wirelessv1/device/setProperty (V1), POST /app_wireless_mower/device/setRain/{sn}/{appId}, …/setWifi, …/appEditDevice |
Partial (set_property for blade) |
| Settings (write, Old) | POST /app_mower/device-setting/save, …/updateLocation, …/updateTimeZone, device/setLed, …/saveLed, …/setRain, …/saveRain, …/setUltra, …/saveUltra, …/setZones, …/setNickName, …/setGps, …/setCurrentTime, …/setWorkStatus, …/resetPassword |
No |
| Schedule | POST /app_mower/device-schedule/setScheduling (Old), app_mower/device-schedule/save, app_mower/device/getScheduling, POST /app_wireless_mower/.../setProperty with setSchedule (V1) and set_property with setTimeTactics (S/X/V) |
Yes (all three paths) |
| MQTT proxy via REST | POST /iot_mower/wireless/device/get_property, …/set_property, …/action, …/extra, …/otaUpgrade, …/bindBaseStation |
Yes (get_property after connect) |
| Maps | GET /wireless_map/wireless_device/get, …/getHeatMap, …/get3D, wireless_map/backup_map/get, map/work-map/mobile/{sn}, …/newest/{online}/{sn}, …/all-info, app_wireless_mower/device/getMapRealPath |
Yes (get + getHeatMap) |
| Work records | GET /app_wireless_mower/work_record/page, …/work_event_info/page, device_log/device-operation-records/esPage, app_mower/device-record/getRecord/{sn}, app_mower/device-cmd-logs/page |
No |
| Anti-theft / GPS | gps/mobile/anti-theft/by-sn/{sn}, …/device-position/{sn}, …/getAntiTheftStatusInfo, …/is-it-bound, …/set-fence, …/wireless/bind, gps/anti-theft/send-track, gps/fence-radius-setting/list |
No |
| Base station | station/base-station/bind, …/unBind, …/getByDeviceSn, …/getByStationSn/{sn} |
No |
| OTA | ota/firmware-large/check/{sn}/{ver}, …/getDescription, …/otaUpdate, …/wireless/check, ota/firmware-small/list/{id} |
No |
| Sharing | app_wireless_mower/device-user-share, …/invite/detail, …/invite/reply, …/unbind, device-user/openShare, …/closeShare |
No |
| Skins / cosmetics | app_wireless_mower/device-skin, …/list, …/bind/switch{userId}/{id} |
No |
| Payment | pay/v1/mobile/combo/*, pay/v1/mobile/order/*, pay/v1/paypal/*, pay/v1/user/card/holder* |
No |
| Misc | app_wireless_mower/feedback-record, community_activities/*, message-send-logs/*, app-version/check, app-agreements/business-types/{type}/items, sale/manual/getManualBySn, link-address/list/{type} |
No |
V1-specific (app_wirelessv1_mower/wirelessv1/): device-setting, device-setting/{sn}, device-schedule/{deviceId}, device/getProperty, device/setProperty, device/saveProperty, device/restoreFactory.
- Home Assistant integration used as the API reference: https://github.com/Bouni/sunseeker-lawn-mower
- json2iob: https://github.com/TA2k/json2iob
- (ioBroker-Bot) Adapter requires admin >= 7.8.23 now.
- (TA2k) initial release
Older changelogs can be found there
MIT License
Copyright (c) 2026 iobroker-community-adapters iobroker-community-adapters@gmx.de
Copyright (c) 2026 TA2k tombox2020@gmail.com
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

