Running Single Zone for Roborock S7 MaxV Ultra

I have the Xiaomi binding installed and online and I’m trying to run a single zone cleanup.

I used the mapviewer to find the coordinates for the room I want to clean.

My item is called CarsonActionsCommands and shows ONLINE in the UI.

I set up a simple testing rule with a virtual switch that I can turn on/off to try to get it to clean the zone:

rule "Testing"
when
	Item vTesting changed to ON

then
	logInfo("Testing", "Testing set to ON")	
	CarsonActionsCommands.sendCommand("app_zoned_clean[[32825,28550,37850,32550,1]]")
	
end

When I turn on the virtual button, this is what I see in the logs:

2025-03-02 14:51:34.533 [INFO ] [rg.openhab.core.model.script.Testing] - Testing set to ON
2025-03-02 14:51:34.556 [INFO ] [o.internal.handler.MiIoVacuumHandler] - Command app_zoned_clean[[ 32750,28500,37783,32533,1 ]] not recognised
==> /var/log/openhab/events.log <==
2025-03-02 14:51:34.523 [INFO ] [openhab.event.ItemCommandEvent      ] - Item 'vTesting' received command ON
2025-03-02 14:51:34.527 [INFO ] [openhab.event.ItemStateChangedEvent ] - Item 'vTesting' changed from OFF to ON
2025-03-02 14:51:34.541 [INFO ] [openhab.event.ItemCommandEvent      ] - Item 'CarsonActionsCommands' received command app_zoned_clean[[ 32750,28500,37783,32533,1 ]]
2025-03-02 14:51:34.544 [INFO ] [penhab.event.ItemStatePredictedEvent] - Item 'CarsonActionsCommands' predicted to become app_zoned_clean[[ 32750,28500,37783,32533,1 ]]
2025-03-02 14:51:34.548 [INFO ] [openhab.event.ItemStateChangedEvent ] - Item 'CarsonActionsCommands' changed from dock to app_zoned_clean[[ 32750,28500,37783,32533,1 ]]
==> /var/log/openhab/openhab.log <==
2025-03-02 14:51:37.559 [DEBUG] [nal.transport.MiIoAsyncCommunication] - Command added to Queue {"id":6738,"method":"get_status","params":[]} -> 192.168.1.13 (Device: 5xxx token: xXXXXXXXx Queue: 1).
2025-03-02 14:51:37.670 [DEBUG] [internal.handler.MiIoAbstractHandler] - Received response for device 1FF3DF84 type: GET_STATUS, result: [{"msg_ver":2,"msg_seq":1655,"state":8,"battery":100,"clean_time":326,"clean_area":9960000,"error_code":0,"map_present":1,"in_cleaning":0,"in_returning":0,"in_fresh_state":1,"lab_status":1,"water_box_status":1,"back_type":-1,"wash_phase":0,"wash_ready":0,"fan_power":102,"dnd_enabled":0,"map_status":3,"is_locating":0,"lock_status":0,"water_box_mode":202,"water_box_carriage_status":1,"mop_forbidden_enable":1,"camera_status":389,"is_exploring":0,"home_sec_status":0,"home_sec_enable_password":1,"adbumper_status":[0,0,0],"water_shortage_status":0,"dock_type":3,"dust_collection_status":0,"auto_dust_collection":1,"avoid_count":12,"mop_mode":300,"debug_mode":0,"collision_avoid_status":1,"switch_map_mode":0,"dock_error_status":0,"charge_status":1,"unsave_map_reason":4,"unsave_map_flag":0,"clean_percent":0}], fullresponse: {"id":6738,"result":[{"msg_ver":2,"msg_seq":1655,"state":8,"battery":100,"clean_time":326,"clean_area":9960000,"error_code":0,"map_present":1,"in_cleaning":0,"in_returning":0,"in_fresh_state":1,"lab_status":1,"water_box_status":1,"back_type":-1,"wash_phase":0,"wash_ready":0,"fan_power":102,"dnd_enabled":0,"map_status":3,"is_locating":0,"lock_status":0,"water_box_mode":202,"water_box_carriage_status":1,"mop_forbidden_enable":1,"camera_status":389,"is_exploring":0,"home_sec_status":0,"home_sec_enable_password":1,"adbumper_status":[0,0,0],"water_shortage_status":0,"dock_type":3,"dust_collection_status":0,"auto_dust_collection":1,"avoid_count":12,"mop_mode":300,"debug_mode":0,"collision_avoid_status":1,"switch_map_mode":0,"dock_error_status":0,"charge_status":1,"unsave_map_reason":4,"unsave_map_flag":0,"clean_percent":0}],"exe_time":10}
==> /var/log/openhab/events.log <==
2025-03-02 14:51:37.692 [INFO ] [openhab.event.ItemStateChangedEvent ] - Item 'CarsonActionsCommands' changed from app_zoned_clean[[ 32750,28500,37783,32533,1 ]] to dock

I used the Map Viewer to determine the coordinates, so I think they are correct. I have a vacuum.map in my transformation directory with those coordinates as well.

vacuum.map file

Foyer=[32125,32650,35950,35600,1]
Dining_Room=[27475,31275,32775,35625,1]
Master_Office=[32750,28500,37783,32533,1]
Master_Bath=[31800,35925,37050,40650,1]
Master_Bed=[24425,35675,31775,40600,1]
Breakfast_Nook=[24875,28775,28225,33300,1]
Kitchen=[28300,25825,31075,30950,1]
Living_Room=[21350,25275,27675,30050,1]
Hallway=[18925,24225,31550,25175,1]
Laundry=[29575,20275,31375,24250,1]

I’m stuck at this point. Any help appreciated!