Reputation:
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
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.
Upvotes: 1