Reputation: 1353
I am new using Arduino. I have Arduino One using a Ethernet shield and I need to send some information from the Arduino to the my Azure IoT Hub all the examples are using Wi-Fi shield.
I was reading the docs from Azure-IoT-Arduino SDK for Arduino but I could not find useful information. https://github.com/Azure/azure-iot-arduino
Someone know where I can find information about this problem?
Thank you!
Upvotes: 2
Views: 1141
Reputation: 1214
Another option would be to use another device as a protocol gateway. An easy way to get started would be to use node-red on Raspberry Pi
Upvotes: 1
Reputation: 22603
Azure IoT HuB uses TLS to securely connect devices to the Azure Cloud.
The Arduino UNO is not capable of doing secure communication using TLS due to its low memory footprint.
To connect Arduino devices to the Azure cloud you need to look at their 32 bit ARM based offerings like
There are Microsoft Azure IoT SDKs for these platforms.
Upvotes: 2