Questions tagged [nodejs]
The nodejs tag has no summary.
7 questions
1
vote
1
answer
216
views
Send Alexa a command from another device?
I'm in the process of creating a Raspberry Pi-powered home automation system. I have a complicated node.js script running on the Pi, and I want to be able to send commands from the Pi to my Alexa (e.g....
0
votes
1
answer
100
views
MQTT Client: Listeners Exceeded Warning
I'm a newbie building an IOT system comprised of two clients, the first client (Client A) will be a Subscriber and the second client (Client B) will be a Publisher. For the Broker, I intend to use ...
1
vote
1
answer
663
views
decoding data sent from an esp32 using esp-idf over serial in nodejs
I have an esp32 board loaded with this software which is logging values about the number of detected wifi and bluetooth devices detected via LoraWAN. In senddata.cpp it seems to be logging out the ...
3
votes
0
answers
707
views
What commands should I send to Tasmota (DHT11) via MQTT Broker to receive status as message in my NodeJS script?
I cannot find how to send command to my Tasmota DHT11 device via MQTT Broker.
I'm using mqtt.js library in Nodejs.
var mqtt = require('mqtt');
var topic = 'cmnd/tasmota_E30D62/';
var client = mqtt....
0
votes
1
answer
198
views
Benefits of Greengrass over IoT SDK [closed]
What are the benefits of using the Greengrass vs the Node SDK package?
We have a software stack happily interacting with IoT Core services (running on buildroot) using the Node SDK. I'm trying to ...
2
votes
0
answers
129
views
Alexa - Confirm AMAZON.Number slots
I have an intent to request a bank account info by it's number. I tried with only one slot of AMAZON.Number but if the account number is ***012345, Alexa understand this as ***012337 (last two digits ...
5
votes
1
answer
318
views
node-red - Metrics display with pm2?
The Node-RED documentation is clear - set metrics to true to track flow execution and memory usage information. So, I stopped Node-RED with pm2, edited the settings.js file and started Node-RED. But, ...