-
Notifications
You must be signed in to change notification settings - Fork 737
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Make device twin sample to run on ESP8266 #52
Comments
We suggest changing parson source code to use some of the functions we wrote in order to work around the sscanf problem. We have no time to make this change ourselves for the foreseeable future. If you manage to get it running, we'd take a pull request on that. Thank you. Best Regards, |
Waiting for my pull request at |
@anporumb Although device twin is still not working on ESP8266 (lack of |
Twin support for Arduino is near the front of my task queue. I'll post here when it's complete. |
Any update @JetstreamRoySprowl ? Is it still far away? |
@jantielens Real Soon Now. I've gotten it running, and just need to get it into the next release. |
The 1.0.44 versions of the Azure IoT libraries now have twin support. Running this version will require the latest library and devices files. Here is the sample for Huzzah, but it also fits in Thing Dev: https://github.com/Azure-Samples/iot-hub-c-huzzah-getstartedkit |
serializer/samples/devicetwin_simplesample is one good example how to use device twin (
WITH_DESIRED_PROPERTY
) and device method (WITH_METHOD
).But unfortunately, it currently does not work with ESP8266 (Sparkfun Thing Dev). I am not proficient in C but when I drill down I found that
parson.c
usesscanf
but ESP8266 does not supportsscanf
(issue).I really hope the device twin sample can work because it enables ESP8266 to be invoked with device method.
The text was updated successfully, but these errors were encountered: