Getting Started with DuloNode

DuloNode bridges Alexa and Node-RED, giving you voice control over your automations. You create devices directly inside your Node-RED flows, and Alexa controls them with voice commands. No complex cloud setup, no sharing your Amazon credentials - your devices stay in your Node-RED.

DuloNode - Alexa and Node-RED example flow showing hub, device, and debug nodes

What You Can Control

DuloNode supports 10 device types. Each device appears in your Alexa app and responds to voice commands.

Plus Speaker and Scene devices. View all voice commands.

How It Works

DuloNode turns your Alexa voice commands into JSON payloads for Node-RED.

1

You speak

Tell Alexa what you want, like "Alexa, dim the reading lamp to 40%".

2

DuloNode translates

Your voice command becomes a structured JSON message representing the desired device state.

3

Node-RED receives

The Hub node delivers the JSON payload to your flow - you decide what happens next.

Example payload

{
  "name": "Reading lamp",
  "type": "light",
  "components": {
    "PowerController": { "powerState": "ON" },
    "BrightnessController": { "brightness": 40 }
  }
}

This is a simplified example. See the full payload structure in the voice commands page.

What's Included

  • All 10 device types available
  • Works with Home Assistant and standalone Node-RED
  • Supported in 15 Alexa locales: English (AU, CA, GB, IN, US), French (CA, FR), German (DE), Hindi (IN), Italian (IT), Japanese (JP), Portuguese (BR), Spanish (ES, MX, US)
Create Free Account

Setup takes just a few minutes

Already have an account? Log in

Next Steps