Azure / azure-iot-hub-node

Azure IoT Hub Data Plane Node SDK
MIT License
2 stars 9 forks source link

The sample code for samples/send_c2d_message.js has incorrect comment #35

Open kapslock123 opened 11 months ago

kapslock123 commented 11 months ago

// Create a message and send it to the IoT Hub every second. -----> this just polls Iothub's C2D device queue. setInterval(function () { var data = JSON.stringify({ text : 'foo' }); var message = new Message(data); console.log('Sending message: ' + message.getData()); client.send(targetDevice, message, printResultFor('send')); }, 2000); } });