user4671960
user4671960

Reputation:

how to push data from azure iot to unity 3D

I am working on unity and I need a small help. I am trying to push azure iot data to unity 3D. Can anyone tell how can it be done? I have searched on the internet and has not found a reliable information. Please help me with this.

Upvotes: 1

Views: 1175

Answers (1)

Michael Xu
Michael Xu

Reputation: 4432

If you build the unity 3D project for Universal Windows Platform as C# project,you can install Microsoft.Azure.Devices.Client package, and then use DeviceClient to receive Cloud-to-Device message. Of cause, you can use other azure iot hub SDKs if you did not use C#. Currently, Auzre IoT Hub SDKs support .Net, C, Java, Node.js, Python and iOS.

In addition, as Roman Kiss mentioned in above comment, Azure Function is another option.You can refer to this link.

enter image description here

Upvotes: 1

Related Questions