I have this in Google's App Engine (node.js). My device gets all the commands but I still get the Could not send command. Is the device connected? error.
BTW, already tried this: Await for function before end() And same result.
Trying to follow this example BTW:
https://cloud.google.com/nodejs/docs/reference/iot/0.2.x/v1.DeviceManagerClient#sendCommandToDevice
const express = require('express');
var bodyParser = require('body-parser');
const app = express();
var urlencodedParser = bodyParser.urlencoded({
extended: false
})
const iot = require('@google-cloud/iot');
app.get('/', urlencodedParser, (req, res) => {
    res.setHeader('Content-Type', 'application/json');
    const projectId = req.query.proyecto;
    const cloudRegion = req.query.region;
    const registryId = req.query.registro;
    const numSerie = req.query.numSerie;
    const command = req.query.command;
const client = new iot.v1.DeviceManagerClient();
if (client === undefined) {
    console.log('Did not instantiate client.');
} else {
    console.log('Did instantiate client.');
    sendCom();
}
async function sendCom() {
    const formattedName = client.devicePath(projectId, cloudRegion, registryId, numSerie)
    const binaryData = Buffer.from(command);
    const request = {
        name: formattedName,
        binaryData: binaryData,
    };
    return client.sendCommandToDevice(request).then(responses => res.status(200).end(JSON.stringify({
        data: OK
    }))).catch(err => res.status(404).end('Could not send command. Is the device connected?'));
}
});
const PORT = process.env.PORT || 8080;
app.listen(PORT, () => {
console.log(`App listening on port ${PORT}`);
console.log('Press Ctrl+C to quit.');
});
module.exports = app;
On my end I should get status 200 and OK but it doesn't happen.
