mysensor to Azure Iot Hub
-
Is it possible to send the data from gateway to Azure Iot Hub ?
-
Azure IoT Hub supports the MQTT protocol directly, or you can use a "Protocol Gateway", which translate MQTT to Azure's REST API.
See here for interfacing directly with MQTT: https://azure.microsoft.com/en-us/documentation/articles/iot-hub-mqtt-support/
For using a Protocol Gateway, Microsoft provides a reference protocol gateway (https://github.com/Azure/azure-iot-protocol-gateway), and some pretty good documentation about using an MQTT protocol gateway to interface with Azure IoT Hub.
Either way, you should be able to use the MQTTGateway sketch on your gateway to push data up to Azure.