IOT


Azure IoT Edge入门(10)远程在IoT Edge设备上部署SQL数据库-Deploy Azure SQL Edge to Azure IoT Edge

本文介绍: 远程在IoT Edge设备上部署 Azure SQL Edge的几种方法; 连接到Azure SQL Edge的方法(Edge设备物理机 / Edge设备Module容器内); Azure Data Studio连接到Azure SQL Edge; 视频: 重点图文: 远程在IoT Edge设备上部署 Azure SQL Edge的几种方法; 方法1.在Azure Portal上的IoT edge设备上添加市场 模块: 进入IoT Hub 选中要部署SQL EDGE的iot edge设备: 点击 模块设置: 点击添加 市场模块: 在市场中选择SQL Server Module: 方法2.在Azure Portal上的Marketplace中选择Azure SQL Edge,然后选择待部署到的 …

Azure IOT Video IoT Edge Azure SQL SQL Edge

Azure IoT Edge入门(9)云到边缘设备控制-Azure iot edge module direct method

本文介绍: 1. Azure IoT edge 从云到边缘设备的控制方式之一 direct method。 2. Edge-agent中内置的 direct method 本文参考:https://docs.microsoft.com/zh-cn/azure/iot-edge/how-to-edgeagent-direct-method 视频: 图文: 我们之前介绍过Azure IoT Hub 的云到设备控制的方法之一是direct method,参见《云到设备的控制-direct method》。 与此类似,Azure IoT Edge Module中也支持direct method,可以实现对在线module的控制及数据传输(通过payload)。 同时,Azure IoT Edge的系统Module之一的Edge-agent中也内置了几个 …

Azure IOT Video IoT Edge

Azure IoT Edge入门(8)边缘设备到云的消息 及 在本地开发调试 debug Edge Module

本文介绍: 1. 利用Module Client 发送Module 到云的消息; 2. 如何在本地VS code中调试 Azure IoT Edge Module; 3. 使用路由 在多个模块之间控制消息流向; 本文代码请参考github:https://github.com/sean8544/azure-iot-edge-quickstart/tree/main/demo08 本文参考: 开发调试 edge module:https://docs.microsoft.com/zh-cn/azure/iot-edge/how-to-vs-code-develop-module edge hub dev tool:https://github.com/Azure/iotedgehubdev 视频: 图文: Azure IoT …

Azure IOT Video IoT Edge

【转载】物联网信号

完整报告点击下方的连接进行下载: https://videos.51azure.cloud/azure/aiot/IoT_Signals_Edition 2_Chinese.pdf 更多内容推荐: 微软Azure IOT 和 AI 的概览介绍 Azure 智能云 之 Azure IoT Hub 十分钟入门系列文章目录 Azure 智能边缘 之 Azure IoT Edge 十分钟入门系列文章目录

Azure IOT Cloud


技巧-IOT hub message routing to storage account write messages in base 64

本文介绍: IoT Hub 消息路由功能JSON格式消息以base64编码存储到blob中的处理方式。 通过消息路由配置了一个路由到Stoage 的路由,编码格式采用了JSON格式,路由生效后,在Storage中发现消息体成了base64编码: base64 编码的消息体: 处理方案: 在遥测消息体里对系统属性进行手动设置: 官网文档描述:https://docs.azure.cn/zh-cn/iot-hub/iot-hub-devguide-messages-d2c#azure-storage IoT 中心支持将数据以 Apache Avro 格式和 JSON 格式写入 Azure 存储。 默认值为 AVRO。 只有在配置 Blob 存储终结点时才能设置编码格式。 不能编辑现有终结点的格式。 使用 JSON 编码时,必须在消息系统属性中将 …

Azure IOT IoT Hub

Azure IoT Hub入门系列 (15)- Azure Function和SignalR Service 向 Web 前端推送IoT 报警信息 (C#)

本文介绍: Azure Function和SignalR Service 向 Web 前端推送IoT 报警信息 (C#) 视频介绍: 图文介绍: 注意,本文在 《实现Azure Function 通过IoT Hub Trigger将遥测消息写入SQL数据库(C#)》的基础上继续进行。 本文参照案例:https://docs.microsoft.com/zh-cn/azure/azure-signalr/signalr-quickstart-azure-functions-csharp 本文使用的示例代码:https://github.com/Azure-Samples/signalr-service-quickstart-serverless-chat 创建SignalR Service: 填写信息,完成创建: …

Azure IOT Video IoT Hub Functions SignalR

Azure IoT Hub入门系列 (14)- 将IoT Hub Service SDK 调用Direct Method 封装为Azure Functions Http Trigger(C#)

本文介绍: 将IoT Hub Service SDK 调用Direct Method 封装为Azure Functions Http Trigger(C#) 视频介绍: 图文介绍: 本文内容比较简单,不做图文介绍了,直接创建functions,采用http 触发,添加如下代码,发布后即可通过调用http请求的方式,向iot hub 发送 direct method 调用。 注意: 1.引用包:using Microsoft.Azure.Devices; 2.本例调用的客户端案例为\azure-iot-samples-node-master\iot-hub\Quickstarts\simulated-device-2 3. 其中iot hub 连接字符串写入functions 配置文件,deviceid 和payload 通过query …

Azure IOT Video IoT Hub Functions

Azure IoT Hub入门系列 (13)- 实现Azure Function 通过IoT Hub Trigger将遥测消息写入SQL数据库(C#)

Azure IoT Hub入门系列 (13)- 实现Azure Function 通过IoT Hub Trigger将遥测消息写入SQL数据库(C#) 本文介绍: 本文介绍如下: 1.C# 语言和VS Code 开发Azure Functions的准备工作; 安装.net core sdk; 安装配置 vs code 和Azue Functions Core Tools; 在portal中准备SQL数据库; 2.设备发送遥测消息到 IoT Hub后使用Azure Function 的IoT Hub Trigger 处理遥测消息; 新建C# iot hub trigger functons; 3. 使用VS Code Nuget package manager 添加数据库访问用的package(dll引用); 安装nuget …

Azure IOT Video IoT Hub Functions Azure SQL

Azure IoT Hub入门系列 (12)- 10分钟实现Azure Function 通过IoT Hub Trigger处理设备到云的消息(C#)

Azure IoT Hub入门系列 (12)- 10分钟实现Azure Function 通过IoT Hub Trigger处理设备到云的消息(C#) 本文介绍如下: 1.C# 语言和VS Code 开发Azure Functions的准备工作; 2.设备发送遥测消息到 IoT Hub后使用Azure Function 的IoT Hub Trigger 处理遥测消息; 3.使用VS Code 部署Azure Function;--本步骤与上一讲 Java版本一致,本讲不再赘述,请参照 《Azure IoT Hub入门系列 (11)- 10分钟实现Azure Function 通过IoT Hub Trigger处理设备到云的消息(Java)》 开发语言:C# 开发工具:VS Code 视频介绍: 图文介绍: 1. .Net Core SDK 安 …

Azure IOT Video IoT Hub Functions