AWS IoT Device Support for LoPy
-
Hi,
Will LoPy supports AWS IoT integration using MQTT.
https://github.com/aws/aws-iot-device-sdk-python/blob/master/README.rst
AWS IoT SDK contains Paho MQTT Python client library.
currently umqtt does not support this, Then what is equivalent for Paho MQTT to achieve AWS integration.
https://github.com/micropython/micropython-lib/tree/master/umqtt.simpleThanks & Regards,
Satish Kumar. R.
-
This post is deleted!
-
This post is deleted!
-
@juriw Thanks a Lot!
-
@jomifo I have made a mini guide for this issue: https://forum.pycom.io/topic/908/umqtt-aws-iot
-
@daniel also interested in a working sample code.
-
@daniel Just checking... this is still an open issue, correct? Thanks.
-
Hello Daniel, dear all,
I used your code and could do interaction with a custom mosquitto MQTT broker + Let's encrypt certificate (so using TLS on port 8883 and server authentication) from my WiPy. Still using the older firmware from Dec 16th which works fine with TLS + certificates.
https://twitter.com/_rac01/status/814894297208287237Many thanks for the great work!
Ralf
-
@gertjanvanhethof no, we are still busy trying to solve it. It's going to have to wait for the next release.
-
This post is deleted!
-
@daniel No problem. Thanks for the quick confirmation reply.
-
@jomifo we are also experiencing that error and it is caused by the changes made to integrate the Bluetooth stack. We are still investigating the exact root cause. Apologies for the the delay.
-
@daniel - I tried this in the latest release (1.1.0.b1) and am now getting a different OSError. Just wondering if you were able to address this in the latest release and verify your AWS IoT demo works so I know if it is something on my end. Thanks.
>>> from simple import MQTTClient >>> DEVICE_ID = "lopy-gateway" >>> HOST = "[redacted]" >>> TOPIC_DOWNLOAD = "Download" >>> TOPIC_UPLOAD = "Upload" >>> connection = MQTTClient(DEVICE_ID, server=HOST, port=8883) >>> connection.connect(ssl=True, certfile='/flash/cert/lopy-gateway.cert.pem', keyfile='/flash/cert/lopy-gateway.private.key', ca_certs='/flash/cert/root-CA.crt') Traceback (most recent call last): File "<stdin>", line 1, in <module> File "simple.py", line 77, in connect OSError: -32512 >>> import os >>> os.uname() (sysname='LoPy', nodename='LoPy', release='1.1.0.b1', version='v1.8.6-274-g9a2018f on 2016-12-29', machine='LoPy with ESP32') >>>
-
@jomifo I can confirm that the issue is there, we also get the exception with OSError 0. We'll investigate it and provide and solution on tomorrow's release.
-
@jomifo I'll be performing some tests this morning and get I'll get back with an update shortly.
Cheers,
Daniel
-
@daniel Could you please confirm your AWS IoT demo still works for you?
I am using the latest firmware and when trying to connect to the MQTT broker using the REPL, I get OSError 0->>> connection.connect(ssl=True, certfile='/flash/cert/lopy-gateway.cert.pem', keyfile='/flash/cert/lopy-gateway.private.key', ca_certs='/flash/cert/root-CA.crt') Traceback (most recent call last): File "<stdin>", line 1, in <module> File "simple.py", line 79, in connect OSError: 0 >>> >>> >>> import os >>> os.uname() (sysname='LoPy', nodename='LoPy', release='1.0.1.b1', version='v1.8.6-265-g5722083 on 2016-12-22', machine='LoPy with ESP32')
-
Hi @daniel, I am also having issues with your aws demo.
When I break out of the loop and test the connection manually I get OSError -32512
DEVICE_ID = "lopy-gateway"
HOST = "[redacted].iot.us-east-2.amazonaws.com"
TOPIC_DOWNLOAD = "Download"
TOPIC_UPLOAD = "Upload"
from simple import MQTTClient
connection = MQTTClient(DEVICE_ID, server=HOST, port=8883)
connection.connect(ssl=True, certfile='/flash/cert/lopy-gateway.cert.pem', keyfile='/flash/cert/lopy-gateway.private.key', ca_certs='/flash/cert/root-CA.crt')
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "simple.py", line 77, in connect
OSError: -32512I have tested from my desktop using the Python AWSIoTPythonSDK module from AWS with the same credentials successfully.
I could send my code if that would help.
Thanks for any insight.
-
@RSK, I would need to know the OSError number that you are getting.
What you could also do, is to email me all your source files, the certificates, and give me temporal access to your AWS account so I can test it fully on my end.
BTW, are you using static IP configuration on the LoPy/WiPy 2.0? There are known issues around this that we are still trying to resolve with Espressif. If you are, please give your code another try using DHCP instead... Thanks.
Cheers,
Daniel
-
-
@daniel Facing issue in connecting LoPy with AWS IoT.
Was thinking that problem might be with the cert files generated from AWS IoT.
Ensured that they are perfectly fine and working fine with MQTT.fx tool, running the tool in windows 7 32-bit machine. Downloaded from http://mqttfx.jfx4ee.org/index.php/download
Published myTopic/1 from AWS and Subscribed the same in MQTT.fx tool, and they works fine. This helps me to ensure that cert files are fine.
The same cert files are moved to /flash/cert/*, and this time it passes through ssl.wrap_socket() successfully.
After passing ssl.wrap_socket() the exception occurs in next statement self.sock.connect(self.addr). To confirm this added the connect function in try exception block to get the error type. and it gives OSError.
So this shows that error is with socket.connect().
Again to cross check used the IP 35.160.47.159 in MQTT.fx tool to connect and it worked fine with the tool.
Please help to resolve the issue.
Thanks & Regards,
Satish Kumar. R.