Skip to content

Example apps

Sascha edited this page Nov 6, 2022 · 16 revisions

Installation

git clone https://github.com/mrbungle64/ecovacs-deebot.js.git
cd ecovacs-deebot.js
npm install

Files

  • app.js: (basic functions)
  • app2.js (standard functions)
  • mapInfos.js (map related functions)

Setup

Copy the settings.js file to the parent folder of the working directory

cp example/settings.js ./../

Add your Ecovacs account information to this file

exports.ACCOUNT_ID = 'email@domain.com';
exports.PASSWORD = 'a1b2c3d4';

Check also the country code and deviceNumber

exports.COUNTRY_CODE = 'DE';
exports.DEVICE_NUMBER = 0;

Usage

cd example
node ./app2.js
Clone this wiki locally