Как использовать код Node.js в приложении React Native - PullRequest
0 голосов
/ 23 декабря 2018

У меня есть код Node.js, который подключается к Azure's IoT Hub и отправляет сообщения в концентратор.Вот код:

'use strict';

var connectionString = 'connectionString';

// Using the Node.js Device SDK for IoT Hub:
//   https://github.com/Azure/azure-iot-sdk-node
// The sample connects to a device-specific MQTT endpoint on your IoT Hub.
var Mqtt = require('azure-iot-device-mqtt').Mqtt;
var DeviceClient = require('azure-iot-device').Client
var Message = require('azure-iot-device').Message;

var client = DeviceClient.fromConnectionString(connectionString, Mqtt);

// Create a message and send it to the IoT hub every second
setInterval(function(){
  // Simulate telemetry.
  var temperature = 20 + (Math.random() * 15);
  var message = new Message(JSON.stringify({
    temperature: temperature,
    humidity: 60 + (Math.random() * 20)
  }));

  // Add a custom application property to the message.
  // An IoT hub can filter on these properties without access to the message body.
  message.properties.add('temperatureAlert', (temperature > 30) ? 'true' : 'false');

  console.log('Sending message: ' + message.getData());

  // Send the message.
  client.sendEvent(message, function (err) {
    if (err) {
      console.error('send error: ' + err.toString());
    } else {
      console.log('message sent');
    }
  });
}, 1000);

У меня есть приложение React Native, в котором есть кнопка, и я хочу отправлять сообщение с использованием файла Node.js в IoT Hub при каждом нажатии кнопки.Как мне включить файл в свой собственный React файл?Пожалуйста, помогите, спасибо.

1 Ответ

0 голосов
/ 24 декабря 2018

Я бы посоветовал вам взглянуть на Azure IoT Starter Kit Companion , который является примером React Native , которое поможет вам подключить ваше IoT-устройство IoT Hub на iOS , Android и Windows .

Надеюсь, это поможет!

...