作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我对 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 中心 、Android 和 Windows。
希望对你有帮助!
关于azure - 将 React Native 应用程序连接到 Azure IoT 服务,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53906575/
我正在开发一个 voip 调用应用程序。我需要做的是在接到来电时将 Activity 带到前台。我在应用程序中使用 Twilio,并在收到推送消息时开始调用。 问题是我试图在接到任何电话时显示 Act
我是一名优秀的程序员,十分优秀!