Giter Site home page Giter Site logo

Comments (15)

olivierbloch avatar olivierbloch commented on August 22, 2024 3

We are actively working on bringing MQTT support and expect this to be shipped in the next month or so.

from azure-iot-arduino.

mamokarz avatar mamokarz commented on August 22, 2024 1

Hi,
Microsoft has just added MQTT for Arduino... Happy holydays!

from azure-iot-arduino.

olivierbloch avatar olivierbloch commented on August 22, 2024

Hi @yaweiw
This is a perfectly reasonable ask (at least for MQTT as I suspect AMQP might be a bit too much in terms of memory usage to be brought up). We will look into this soon and will keep you posted here.

from azure-iot-arduino.

henrik-d avatar henrik-d commented on August 22, 2024

Can you please confirm or refute, that currently only sending data to the IoTHub is supported and not receiving messages via MQTT? I'm a bit confused...

from azure-iot-arduino.

olivierbloch avatar olivierbloch commented on August 22, 2024

At this point you can only use HTTP to send AND receive messages using the Arduino lib.
We are planning to bring MQTT support soon and certainly AMQP later.

from azure-iot-arduino.

henrik-d avatar henrik-d commented on August 22, 2024

Hey, thanks for the answer. How can I receive notifications with HTTP? Does your lib use long polling?

Plans for supporting MQTT sound good!

from azure-iot-arduino.

olivierbloch avatar olivierbloch commented on August 22, 2024

The library doesn't implement long poling, you have to do it in your loop. MQTT will definitively solve this.

from azure-iot-arduino.

yaweiw avatar yaweiw commented on August 22, 2024

For AMQP & MQTT, I use below code snippet to poll for iot client status
while ((IoTHubClient_LL_GetSendStatus(iotHubClientHandle, &status) == IOTHUB_CLIENT_OK) && (status == IOTHUB_CLIENT_SEND_STATUS_BUSY))
{
IoTHubClient_LL_DoWork(iotHubClientHandle);
ThreadAPI_Sleep(100);
}

from azure-iot-arduino.

olivierbloch avatar olivierbloch commented on August 22, 2024

Hi @yaweiw
I wouldn't recommend using this pattern. When using the lower layer of the C SDK (you can read more about lower layer vs. convenience layer of the C SDK here), the DoWork is about triggering all the work the client SDK has to do: send a message, receive a message,...). If you condition the call to DoWork on the GetSendStatus, then you will never receive a message if you are not sending one...

from azure-iot-arduino.

yaweiw avatar yaweiw commented on August 22, 2024

@olivierbloch in our code, sending is happening constantly.. any possibility to just receive while not send. I guess it's no according to behavior of IoTHubClient_LL_DoWork?

from azure-iot-arduino.

olivierbloch avatar olivierbloch commented on August 22, 2024

Actually you can receive without ever sending. You need to register the callback for receiving messages, then regularly call DoWork. If a message is sent from the Cloud to the device then the next time the DoWork is called, the device client will get the message and will invoke the callback you registered. Our samples show this pattern

from azure-iot-arduino.

henrik-d avatar henrik-d commented on August 22, 2024

@olivierbloch Could you roughly estimate when you will support MQTT with this library? In 1 month, 6 month or 1 year?

from azure-iot-arduino.

mingdee avatar mingdee commented on August 22, 2024

Please I would like to have that answer as well.

from azure-iot-arduino.

magohl avatar magohl commented on August 22, 2024

Would also very much like to know any kind of rough timeline indication on this. Thanks for the great work!

from azure-iot-arduino.

spincraft avatar spincraft commented on August 22, 2024

MQTT would make a great Holiday gift!
Thanks for your efforts.
Best regards

from azure-iot-arduino.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.