Hello,
me and other friends are developing a new device that will transmit the data with M2M technology. We want to use the Azure IOT SDK for handle the communication. I have seen this page https://azure.microsoft.com/it-it/develop/iot/get-started/ where there is a sample code. We don't use any of that device listed so i want to know if it is possible port this code on other devices. I have understand that the send command is done by this:
IoTHubClient_SendEventAsync(iotHubClientHandle, message,SendConfirmationCallback,&message);
but if i have a module GPRS i can add my driver for enable the transmission of the data to azure iot? or this sdk are only for the device indicated in that page?
I have an arduino uno with a gprs shield and normaly the data are send with a :
AT+CIPSEND
http:/www.mysite.com/test/gettempdata.php?TI=25.5&TO=20.9&TR=16.7
using uart.
ypkdani