gpt4 book ai didi

azure - 将 React Native 应用程序连接到 Azure IoT 服务

转载 作者:行者123 更新时间:2023-12-03 01:40:43 31 4
gpt4 key购买 nike

我对 React Native 相当陌生,但我创建了一个简单的应用程序,它有一个按钮和单击按钮时会发生变化的文本。但是,我想连接到 IoT 中心并从中心接收信息。

我当前遇到连接问题。这是我的代码:

import React from 'react';
import {StyleSheet, Dimensions, Alert, Text, View, Image, Button} from 'react-native';
const { width, height } = Dimensions.get("window");

'use strict';
var iothub = require('azure-iothub');
var connectionString = 'connection string';
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);

上面的部分是Node.js代码,但我想在React应用程序中使用它。如何在 React 中使用 Node 包?

我收到以下错误:无法连接到开发服务器。

谢谢。

最佳答案

如您的 other question 中所示,我建议你看看Azure IoT Starter Kit Companion ,这是一个示例 React Native 应用程序,可帮助您将 IoT 设备连接到 iOS 上的 IoT 中心AndroidWindows

希望对你有帮助!

关于azure - 将 React Native 应用程序连接到 Azure IoT 服务,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53906575/

31 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com