Skip to content

CustomArea

Sascha edited this page Jul 10, 2022 · 17 revisions

Usage

Shortcut commands

For older models (incl. OZMO 920/950)

const boundaryCoordinates = "-3975,2280,-1930,4575"; // Example values
const numberOfCleanings = 1;
vacbot.run("CustomArea", "start", boundaryCoordinates, numberOfCleanings);
vacbot.customArea(boundaryCoordinates, numberOfCleanings); // version >= 0.6.2

For newer models (e.g. N8/T8/T9 series and also some yeedi models)

const boundaryCoordinates = "-3975,2280,-1930,4575"; // Example values
const numberOfCleanings = 1;
vacbot.run("CustomArea_V2", boundaryCoordinates, numberOfCleanings);

Retrieve coordinates from log output

See Retrieve coordinates from log output