Search found 167 matches

by danielm
Thu Aug 25, 2016 4:31 pm
Forum: WiPy and CC3200 boards
Topic: MQTT client with TLS/SSL on CC3200
Replies: 3
Views: 92330

MQTT client with TLS/SSL on CC3200

I am trying to connect my CC3200 MicroPython host to "test.mosquitto.org", port 8883 with server certificate verification. c = MQTTClient(client_id = "umqtt_client", server = "test.mosquitto.org", port = 8883, ssl = True, ssl_params={"cert_reqs":ssl.CERT_REQUIRED, "ca_certs":"/flash/cert/ca.pem"}) c...
by danielm
Wed Aug 17, 2016 6:50 am
Forum: WiPy and CC3200 boards
Topic: OTA update issue
Replies: 3
Views: 4420

Re: OTA update issue

Yes, I use passive mode. Uploading to other directories than '/flash/sys' works ok. I work in Windows, but you are right, I should try different client. Anyway I think it will not help.
by danielm
Tue Aug 16, 2016 3:02 pm
Forum: WiPy and CC3200 boards
Topic: OTA update issue
Replies: 3
Views: 4420

OTA update issue

I am trying to perform OTA update via FTP, but my Filezilla client reports 'Could not start transfer' when trying to upload mcuimg.bin to '/flash/sys'. When I try to upload the file to '/flash' it works however reported file size of uploaded file is smaller as it probably cannot fit in that part of ...
by danielm
Thu Aug 11, 2016 4:53 pm
Forum: WiPy and CC3200 boards
Topic: Remote FTP access
Replies: 3
Views: 4921

Re: Remote FTP access

Thank you for an explanation.

My goal is to copy files to and from the MP host. Therefore, another option is to use rshell through default Telnet port. Btw, does rshell work well on Windows 7 64bit? It did not work for me. It works ok on Ubuntu 14.04 LTS.
by danielm
Thu Aug 11, 2016 9:12 am
Forum: Programs, Libraries and Tools
Topic: rshell - Remote Shell
Replies: 89
Views: 110582

Re: rshell - Remote Shell

Dave, does rshell support custom telnet port?
by danielm
Thu Aug 11, 2016 8:40 am
Forum: WiPy and CC3200 boards
Topic: Remote FTP access
Replies: 3
Views: 4921

Remote FTP access

I am trying to access my host running WiPy port remotely via Internet. I set up port forward on my router. I also set limit to 1 simultaneous connection and plain FTP mode. This is log from FileZilla: Status: Connecting to XXX:8021... Status: Connection established, waiting for welcome message... St...
by danielm
Mon Aug 08, 2016 8:20 pm
Forum: ESP8266 boards
Topic: Delays when processing subcribe messages
Replies: 5
Views: 5112

Re: Delays when processing subcribe messages

Just an idea - this behaviour may be caused by your router with NAT enabled closing (expiring) opened NAT session too soon. In that case sending regular ping messages should help.
by danielm
Tue Aug 02, 2016 9:23 am
Forum: ESP8266 boards
Topic: Official MicroPython MQTT client
Replies: 19
Views: 44100

Re: Official MicroPython MQTT client

pfalcon, will TLS/SSL be supported by MQTT client sometime in the near future? In my opinion it is an important feature for any real-world IoT use-case.
by danielm
Sun Jul 31, 2016 4:47 pm
Forum: Programs, Libraries and Tools
Topic: urequests error
Replies: 2
Views: 5280

Re: urequests error

Thanks a lot for your effort. I am sure this module will be used widely.
by danielm
Sat Jul 30, 2016 9:14 am
Forum: ESP8266 boards
Topic: Official MicroPython MQTT client
Replies: 19
Views: 44100

Re: Official MicroPython MQTT client

I would like to ask - what does value returned by connect() mean?