npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

node-red-contrib-neato-botvac

v0.2.2

Published

Node Red Node for Neato Botvac robots

Downloads

72

Readme

node-red-contrib-neato-botvac

Node-Red node for Neato Botvac robots

Depends on node-botvac

Important Information

Due to add map supprt I had to rename the neato-botvac node to neato-status since Version 0.1.0. Sorry!

Configuration

  1. Place "neato status" node
  2. Open configuration of node and click on the pencil button to create a new neato configuration
  3. Enter eMail and password of your neato account (you need to be registered!)
  4. Configure the index of the robot (0 - first robot, 1 - second robot, ...)

Usage

Status-Update

If you want to get a status update of the robot the payload needs to be value 'true'. Following output is generated by the web api of neato:

{
	"payload":
		{
			"version":1,
			"reqId":"77",
			"result":"ok",
			"data":{},
			"error":null,
			"alert":"nav_floorplan_load_fail",
			"state":1,
			"action":0,
			"cleaning":
			{
				"category":2,
				"mode":2,
				"modifier":1,
				"navigationMode":1,
				"spotWidth":0,
				"spotHeight":0
			},
			"details":
			{
				"isCharging":false,
				"isDocked":true,
				"isScheduleEnabled":true,
				"dockHasBeenSeen":false,
				"charge":95
			},
			"availableCommands":
			{
				"start":true,
				"stop":false,
				"pause":false,
				"resume":false,
				"goToBase":false
			},
			"availableServices":
			{
				"findMe":"basic-1",
				"generalInfo":"basic-1",
				"houseCleaning":"basic-3",
				"IECTest":"advanced-1",
				"logCopy":"basic-1",
				"maps":"macro-1",
				"preferences":"basic-2",
				"schedule":"minimal-1",
				"softwareUpdate":"basic-1",
				"spotCleaning":"minimal-2",
				"wifi":"basic-1"
			},
			"meta":
			{
				"modelName":"BotVacD5Connected",
				"firmware":"4.5.0-179"
			}
		},
		"topic":"result",
		"_msgid":"f407cae1.707da8"
	}

For more information about the possible output visit Neato Robot Remote Protocol or Neato Nucleo Api

Commands

The following commands are available at the moment:

start

All parameters which are not given will be preset with the internal settings of robot! Parameters are only examples here...

{"command":"start","eco":true,"navigationmode":1,"nogolines":false}

pause

{"command":"pause"}

resume

{"command":"resume"}

stop

{"command":"stop"}

sendtobase

Available only on some models!

{"command":"sendtobase"}

findme

{"command":"findme"}

dismissCurrentAlert

{"command":"dismissCurrentAlert"}

enableSchedule

{"command":"enableSchedule"}

disableSchedule

{"command":"disableSchedule"}

getSchedule

{"command":"getSchedule"}

startSpotCleaning

All parameters which are not given will be preset with the internal settings of robot! Parameters are only examples here...

{"command":"startSpotCleaning","eco":true,"width":50, "height": 20, "repeat":false, "navigationmode":1}

startManualCleaning

All parameters which are not given will be preset with the internal settings of robot! Parameters are only examples here...

{"command":"startManualCleaning","eco":true,"navigationmode":1}

startCleaningBoundary

All parameters (except boundaryId) which are not given will be preset with the internal settings of robot! To execute the command you have to set a boundaryId of a map! Parameters are only examples here...

{"command":"startCleaningBoundary","eco":true, "extraCare":false, "boundaryId":"XXXXX"}

Getting map information

To get map information place the neato-maps node and configure the neato config as described above. Any command on the input side will cause to get the actual map data from your configured robot.

Example of the output data of the node:

{
	"payload":
	{
		"stats": {},
		"maps":[
			{
				"id":"2019-10-16T07:00:01Z",
				"url":"https://neatorobotics.s3.amazonaws.com/....",
				"url_valid_for_seconds":300,
				"version":1,
				"generated_at":"2019-10-16T07:42:55Z",
				"status":"complete",
				"launched_from":"schedule",
				"error":null,
				"modifier":1,
				"start_at":"2019-10-16T07:00:01Z",
				"end_at":"2019-10-16T07:42:55Z",
				"end_orientation_relative_degrees":4,
				"run_charge_at_start":98,
				"run_charge_at_end":67,
				"persistent_map_id":null,
				"cleaned_with_persistent_map_id":null,
				"suspended_cleaning_charging_count":0,
				"time_in_suspended_cleaning":0,
				"time_in_error":0,
				"time_in_pause":0,
				"cleaned_area":36.4224,
				"base_count":1,
				"is_docked":true,
				"delocalized":false,
				"valid_as_persistent_map":false,
				"category":2,
				"mode":2,
				"navigation_mode":1
			},
			//... Up to 20 entries
		]
	}
}

Getting boundary information

To get boundary information place the neato-boundary node and configure the neato config as described above. There are two commands to execute in this node:

getMapBoundaries

To get a mapID you have to look for it with the neato-map node! Parameters are only examples here...

{"command":"startSpotCleaning","mapid":"-->Get this with the map node!"}

setMapBoundaries

To get a mapID you have to look for it with the neato-map node! Boundaries are given as array with the following data:

  • {string} color - color hex code for a type polygone or '#000000' for a type polyline
  • {bool} enabled - always true, unknown usage
  • {string} id - boundary id (uuid-v4)
  • {string} name - polygone name or empty string for a type polyline
  • {number[]} [relevancy] - array of 2 number, center of a type polygone
  • {string} type - either polyline (for a no go lines) or polygon (for a zone)
  • {number[][]} vertices - array of array of two points, coordinates of the points Parameters are only examples here...
{"command":"startSpotCleaning","mapid":"-->Get this with the map node!", "boundaries":"-->see object definition above"}

Error and Alerts

To extract the errors and alerts out of the complete payload of the status node, I added the nodes neato-alerts and neato-errors. These two nodes will give you a human readable string of the enum which Neato offers. Simply connect these to the neato-status node.

State and Action

To extract the state and action out of the complete payload of the status node, I added the nodes neato-state and neato-action. These two nodes will give you a human readable string of the enum which Neato offers. Simply connect these to the neato-status node.

ToDo

Please open an issue to ask for new features!