当前位置:   article > 正文

设备如何使用go sdk轻松连接华为云IoT平台_device-sdk-go集成

device-sdk-go集成

本文分享自华为云社区《设备如何使用go sdk轻松连接华为云IoT平台》,作者:华为云IoT专家团 。

本文介绍使用huaweicloud-iot-device-sdk-go 连接华为云IoT平台,实现简单的华为云文档介绍的四个功能:设备连接鉴权、设备命令、设备消息和设备属性。huaweicloud-iot-device-sdk-go提供设备接入华为云IoT物联网平台的Go版本的SDK,提供设备和平台之间通讯能力,以及设备服务、网关服务、OTA等高级服务。IoT设备开发者使用SDK可以大大简化开发复杂度,快速的接入平台。

Gihub项目地址:huaweicloud-iot-device-sdk-go

安装和构建

安装和构建的过程取决于使用go的 modules(推荐) 还是还是GOPATH

Modules

如果你使用 modules 只需要导入包"github.com/ctlove0523/huaweicloud-iot-device-sdk-go"即可使用。当你使用go build命令构建项目时,依赖的包会自动被下载。注意使用go build命令构建时会自动下载最新版本,最新版本还没有达到release的标准可能存在一些尚未修复的bug。如果想使用稳定的发布版本可以从release 获取最新稳定的版本号,并在go.mod文件中指定版本号。

  1. module example
  2. go 1.15
  3. require github.com/ctlove0523/huaweicloud-iot-device-sdk-go v0.0.1-alpha

GOPATH

如果你使用GOPATH,下面的一条命令即可实现安装

go get github.com/ctlove0523/huaweicloud-iot-device-sdk-go

使用API

创建设备并初始化

1、首先,在华为云IoT平台创建一个设备,设备的信息如下:

设备ID:5fdb75cccbfe2f02ce81d4bf_go-mqtt

设备密钥:123456789

2、使用SDK创建一个Device对象,并初始化Device。

  1. // 创建一个设备并初始化
  2. device := iot.CreateIotDevice("5fdb75cccbfe2f02ce81d4bf_go-mqtt", "123456789", "tcp://iot-mqtts.cn-north-4.myhuaweicloud.com:1883")
  3. device.Init()

完整样例

  1. import (
  2. "fmt"
  3. "github.com/ctlove0523/huaweicloud-iot-device-sdk-go"
  4. "time"
  5. )
  6. func main() {
  7. // 创建一个设备并初始化
  8. device := iot.CreateIotDevice("5fdb75cccbfe2f02ce81d4bf_go-mqtt", "123456789", "tcp://iot-mqtts.cn-north-4.myhuaweicloud.com:1883")
  9. device.Init()
  10. if device.IsConnected() {
  11. fmt.Println("device connect huawei iot platform success")
  12. } else {
  13. fmt.Println("device connect huawei iot platform failed")
  14. }
  15. }

iot-mqtts.cn-north-4.myhuaweicloud.com为华为IoT平台(基础班)在华为云北京四的访问端点,如果你购买了标准版或企业版,请将iot-mqtts.cn-north-4.myhuaweicloud.com更换为对应的MQTT协议接入端点。

设备处理平台下发的命令

1、首先,在华为云IoT平台创建一个设备,设备的信息如下:

设备ID:5fdb75cccbfe2f02ce81d4bf_go-mqtt

设备密钥:123456789

2、使用SDK创建一个Device对象,并初始化Device。

  1. // 创建一个设备并初始化
  2. device := iot.CreateIotDevice("5fdb75cccbfe2f02ce81d4bf_go-mqtt", "123456789", "tcp://iot-mqtts.cn-north-4.myhuaweicloud.com:1883")
  3. device.Init()
  4. if device.IsConnected() {
  5. fmt.Println("device connect huawei iot platform success")
  6. } else {
  7. fmt.Println("device connect huawei iot platform failed")
  8. }

3、注册命令处理handler,支持注册多个handler并且按照注册的顺序回调

  1. // 添加用于处理平台下发命令的callback
  2. device.AddCommandHandler(func(command iot.Command) bool {
  3. fmt.Println("First command handler begin to process command.")
  4. return true
  5. })
  6. device.AddCommandHandler(func(command iot.Command) bool {
  7. fmt.Println("Second command handler begin to process command.")
  8. return true
  9. })

4、通过应用侧API向设备下发一个命令,可以看到程序输出如下:

  1. device connect huawei iot platform success
  2. First command handler begin to process command.
  3. Second command handler begin to process command.

完整样例

  1. import (
  2. "fmt"
  3. "github.com/ctlove0523/huaweicloud-iot-device-sdk-go"
  4. "time"
  5. )
  6. // 处理平台下发的同步命令
  7. func main() {
  8. // 创建一个设备并初始化
  9. device := iot.CreateIotDevice("5fdb75cccbfe2f02ce81d4bf_go-mqtt", "123456789", "tcp://iot-mqtts.cn-north-4.myhuaweicloud.com:1883")
  10. device.Init()
  11. if device.IsConnected() {
  12. fmt.Println("device connect huawei iot platform success")
  13. } else {
  14. fmt.Println("device connect huawei iot platform failed")
  15. }
  16. // 添加用于处理平台下发命令的callback
  17. device.AddCommandHandler(func(command iot.Command) bool {
  18. fmt.Println("First command handler begin to process command.")
  19. return true
  20. })
  21. device.AddCommandHandler(func(command iot.Command) bool {
  22. fmt.Println("Second command handler begin to process command.")
  23. return true
  24. })
  25. time.Sleep(1 * time.Minute)
  26. }

设备支持的命令定义在产品中

设备消息

1、首先,在华为云IoT平台创建一个设备,设备的信息如下:

设备ID:5fdb75cccbfe2f02ce81d4bf_go-mqtt

设备密钥:123456789

2、使用SDK创建一个Device对象,并初始化Device。

  1. device := iot.CreateIotDevice("5fdb75cccbfe2f02ce81d4bf_go-mqtt", "123456789", "tcp://iot-mqtts.cn-north-4.myhuaweicloud.com:1883")
  2. device.Init()

设备消息上报

  1. message := iot.Message{
  2. ObjectDeviceId: uuid.NewV4().String(),
  3. Name: "Fist send message to platform",
  4. Id: uuid.NewV4().String(),
  5. Content: "Hello Huawei IoT Platform",
  6. }
  7. device.SendMessage(message)

平台消息下发

接收平台下发的消息,只需注册消息处理handler,支持注册多个handler并按照注册顺序回调。

  1. // 注册平台下发消息的callback,当收到平台下发的消息时,调用此callback.
  2. // 支持注册多个callback,并且按照注册顺序调用
  3. device.AddMessageHandler(func(message iot.Message) bool {
  4. fmt.Println("first handler called" + iot.Interface2JsonString(message))
  5. return true
  6. })
  7. device.AddMessageHandler(func(message iot.Message) bool {
  8. fmt.Println("second handler called" + iot.Interface2JsonString(message))
  9. return true
  10. })

完整样例

  1. import (
  2. "fmt"
  3. iot "github.com/ctlove0523/huaweicloud-iot-device-sdk-go"
  4. uuid "github.com/satori/go.uuid"
  5. "time"
  6. )
  7. func main() {
  8. // 创建一个设备并初始化
  9. device := iot.CreateIotDevice("5fdb75cccbfe2f02ce81d4bf_go-mqtt", "123456789", "tcp://iot-mqtts.cn-north-4.myhuaweicloud.com:1883")
  10. device.Init()
  11. // 注册平台下发消息的callback,当收到平台下发的消息时,调用此callback.
  12. // 支持注册多个callback,并且按照注册顺序调用
  13. device.AddMessageHandler(func(message iot.Message) bool {
  14. fmt.Println("first handler called" + iot.Interface2JsonString(message))
  15. return true
  16. })
  17. device.AddMessageHandler(func(message iot.Message) bool {
  18. fmt.Println("second handler called" + iot.Interface2JsonString(message))
  19. return true
  20. })
  21. //向平台发送消息
  22. message := iot.Message{
  23. ObjectDeviceId: uuid.NewV4().String(),
  24. Name: "Fist send message to platform",
  25. Id: uuid.NewV4().String(),
  26. Content: "Hello Huawei IoT Platform",
  27. }
  28. device.SendMessage(message)
  29. time.Sleep(2 * time.Minute)
  30. }

设备属性

1、首先,在华为云IoT平台创建一个设备,并在该设备下创建3个子设备,设备及子设备的信息如下:

设备ID:5fdb75cccbfe2f02ce81d4bf_go-mqtt

设备密钥:123456789

子设备ID:5fdb75cccbfe2f02ce81d4bf_sub-device-1

子设备ID:5fdb75cccbfe2f02ce81d4bf_sub-device-2

子设备ID:5fdb75cccbfe2f02ce81d4bf_sub-device-3

2、使用SDK创建一个Device对象,并初始化Device。

  1. // 创建设备并初始化
  2. device := iot.CreateIotDevice("5fdb75cccbfe2f02ce81d4bf_go-mqtt", "123456789", "tcp://iot-mqtts.cn-north-4.myhuaweicloud.com:1883")
  3. device.Init()
  4. fmt.Printf("device connected: %v\n", device.IsConnected())

设备属性上报

使用ReportProperties(properties ServiceProperty) bool 上报设备属性

  1. // 设备上报属性
  2. props := iot.ServicePropertyEntry{
  3. ServiceId: "value",
  4. EventTime: iot.DataCollectionTime(),
  5. Properties: DemoProperties{
  6. Value: "chen tong",
  7. MsgType: "23",
  8. },
  9. }
  10. var content []iot.ServicePropertyEntry
  11. content = append(content, props)
  12. services := iot.ServiceProperty{
  13. Services: content,
  14. }
  15. device.ReportProperties(services)

网关批量设备属性上报

使用BatchReportSubDevicesProperties(service DevicesService) 实现网关批量设备属性上报

  1. // 批量上报子设备属性
  2. subDevice1 := iot.DeviceService{
  3. DeviceId: "5fdb75cccbfe2f02ce81d4bf_sub-device-1",
  4. Services: content,
  5. }
  6. subDevice2 := iot.DeviceService{
  7. DeviceId: "5fdb75cccbfe2f02ce81d4bf_sub-device-2",
  8. Services: content,
  9. }
  10. subDevice3 := iot.DeviceService{
  11. DeviceId: "5fdb75cccbfe2f02ce81d4bf_sub-device-3",
  12. Services: content,
  13. }
  14. var devices []iot.DeviceService
  15. devices = append(devices, subDevice1, subDevice2, subDevice3)
  16. device.BatchReportSubDevicesProperties(iot.DevicesService{
  17. Devices: devices,
  18. })

平台设置设备属性

使用AddPropertiesSetHandler(handler DevicePropertiesSetHandler) 注册平台设置设备属性handler,当接收到平台的命令时SDK回调。

  1. // 注册平台设置属性callback,当应用通过API设置设备属性时,会调用此callback,支持注册多个callback
  2. device.AddPropertiesSetHandler(func(propertiesSetRequest iot.DevicePropertyDownRequest) bool {
  3. fmt.Println("I get property set command")
  4. fmt.Printf("request is %s", iot.Interface2JsonString(propertiesSetRequest))
  5. return true
  6. })

平台查询设备属性

使用SetPropertyQueryHandler(handler DevicePropertyQueryHandler)注册平台查询设备属性handler,当接收到平台的查询请求时SDK回调。

  1. // 注册平台查询设备属性callback,当平台查询设备属性时此callback被调用,仅支持设置一个callback
  2. device.SetPropertyQueryHandler(func(query iot.DevicePropertyQueryRequest) iot.ServicePropertyEntry {
  3. return iot.ServicePropertyEntry{
  4. ServiceId: "value",
  5. Properties: DemoProperties{
  6. Value: "QUERY RESPONSE",
  7. MsgType: "query property",
  8. },
  9. EventTime: "2020-12-19 02:23:24",
  10. }
  11. })

设备侧获取平台的设备影子数据

使用QueryDeviceShadow(query DevicePropertyQueryRequest, handler DevicePropertyQueryResponseHandler) 可以查询平台的设备影子数据,当接收到平台的响应后SDK自动回调DevicePropertyQueryResponseHandler

  1. // 设备查询设备影子数据
  2. device.QueryDeviceShadow(iot.DevicePropertyQueryRequest{
  3. ServiceId: "value",
  4. }, func(response iot.DevicePropertyQueryResponse) {
  5. fmt.Printf("query device shadow success.\n,device shadow data is %s\n", iot.Interface2JsonString(response))
  6. })

完整样例

  1. import (
  2. "fmt"
  3. iot "github.com/ctlove0523/huaweicloud-iot-device-sdk-go"
  4. "time"
  5. )
  6. func main() {
  7. // 创建设备并初始化
  8. device := iot.CreateIotDevice("5fdb75cccbfe2f02ce81d4bf_go-mqtt", "123456789", "tcp://iot-mqtts.cn-north-4.myhuaweicloud.com:1883")
  9. device.Init()
  10. fmt.Printf("device connected: %v\n", device.IsConnected())
  11. // 注册平台设置属性callback,当应用通过API设置设备属性时,会调用此callback,支持注册多个callback
  12. device.AddPropertiesSetHandler(func(propertiesSetRequest iot.DevicePropertyDownRequest) bool {
  13. fmt.Println("I get property set command")
  14. fmt.Printf("request is %s", iot.Interface2JsonString(propertiesSetRequest))
  15. return true
  16. })
  17. // 注册平台查询设备属性callback,当平台查询设备属性时此callback被调用,仅支持设置一个callback
  18. device.SetPropertyQueryHandler(func(query iot.DevicePropertyQueryRequest) iot.ServicePropertyEntry {
  19. return iot.ServicePropertyEntry{
  20. ServiceId: "value",
  21. Properties: DemoProperties{
  22. Value: "QUERY RESPONSE",
  23. MsgType: "query property",
  24. },
  25. EventTime: "2020-12-19 02:23:24",
  26. }
  27. })
  28. // 设备上报属性
  29. props := iot.ServicePropertyEntry{
  30. ServiceId: "value",
  31. EventTime: iot.DataCollectionTime(),
  32. Properties: DemoProperties{
  33. Value: "chen tong",
  34. MsgType: "23",
  35. },
  36. }
  37. var content []iot.ServicePropertyEntry
  38. content = append(content, props)
  39. services := iot.ServiceProperty{
  40. Services: content,
  41. }
  42. device.ReportProperties(services)
  43. // 设备查询设备影子数据
  44. device.QueryDeviceShadow(iot.DevicePropertyQueryRequest{
  45. ServiceId: "value",
  46. }, func(response iot.DevicePropertyQueryResponse) {
  47. fmt.Printf("query device shadow success.\n,device shadow data is %s\n", iot.Interface2JsonString(response))
  48. })
  49. // 批量上报子设备属性
  50. subDevice1 := iot.DeviceService{
  51. DeviceId: "5fdb75cccbfe2f02ce81d4bf_sub-device-1",
  52. Services: content,
  53. }
  54. subDevice2 := iot.DeviceService{
  55. DeviceId: "5fdb75cccbfe2f02ce81d4bf_sub-device-2",
  56. Services: content,
  57. }
  58. subDevice3 := iot.DeviceService{
  59. DeviceId: "5fdb75cccbfe2f02ce81d4bf_sub-device-3",
  60. Services: content,
  61. }
  62. var devices []iot.DeviceService
  63. devices = append(devices, subDevice1, subDevice2, subDevice3)
  64. device.BatchReportSubDevicesProperties(iot.DevicesService{
  65. Devices: devices,
  66. })
  67. time.Sleep(1 * time.Minute)
  68. }
  69. type DemoProperties struct {
  70. Value string `json:"value"`
  71. MsgType string `json:"msgType"`
  72. }

更多学习内容,请前往IoT物联网社区 

如果您也对物联网感兴趣,欢迎评论区交流或私聊~

点击关注,第一时间了解华为云新鲜技术~​
 

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/凡人多烦事01/article/detail/391321
推荐阅读
相关标签
  

闽ICP备14008679号