Search found 167 matches

by danielm
Thu Oct 22, 2015 9:11 am
Forum: Programs, Libraries and Tools
Topic: paho-mqtt for MicroPython
Replies: 17
Views: 27299

Re: paho-mqtt for MicroPython

Yesterday I tried to switch protocol of backend -> browser UI update channel of my solution to mqtt and it works quite well, better than socket.io :) I used paho-mqtt for python backend (over TCP) and mqttws31.js (over WebSocket) for browser side running on test.mosquitto.org.
by danielm
Wed Oct 21, 2015 4:55 pm
Forum: Programs, Libraries and Tools
Topic: paho-mqtt for MicroPython
Replies: 17
Views: 27299

Re: paho-mqtt for MicroPython

kfricke , I think that a lot of people from MicroPython community would really be grateful for efficient and resource-saving implementation of MQTT client for MicroPython. From my point of view, emulation of HTTP requests si the only way how to talk to the Internet taking into consideration current...
by danielm
Wed Oct 21, 2015 4:44 pm
Forum: Other Boards
Topic: ESP8266 issues starting out
Replies: 14
Views: 13843

Re: ESP8266 issues starting out

kfricke wrote:Wrong: Olimex MOD-WIFI-ESP8266-DEV (see the schematic for details)
You are right, even local supplier in Slovakia has it in his e-shop. I hope that fatfs will be supported in the near future.
by danielm
Wed Oct 21, 2015 2:36 pm
Forum: Other Boards
Topic: ESP8266 issues starting out
Replies: 14
Views: 13843

Re: ESP8266 issues starting out

I would like to ask, is someone already working on fatfs support?
by danielm
Wed Oct 21, 2015 12:14 pm
Forum: Other Boards
Topic: ESP8266 issues starting out
Replies: 14
Views: 13843

Re: ESP8266 issues starting out

ESP8266-12E seems to have those pins broken out: http://www.esp8266.com/viewtopic.php?f=13&t=3023 http://www.aliexpress.com/store/product/1-pcs-x-ESP-12E-ESP8266-Enhance-version-of-ESP-12-WiFi-Serial-Transceiver-Module-REMOTE/1795334_32336161197.html I guess it should be possible to connect SD-card ...
by danielm
Wed Oct 21, 2015 11:22 am
Forum: Other Boards
Topic: ESP8266 issues starting out
Replies: 14
Views: 13843

Re: ESP8266 issues starting out

Looking at this table http://www.esp8266.com/wiki/lib/exe/detail.php?id=esp8266_gpio_pin_allocations&media=pin_functions.png (from this page http://www.esp8266.com/wiki/doku.php?id=esp8266_gpio_pin_allocations) I was thinking to use GPIOs 6-11 for connection to SD card and GPIOs 12-15 for connection...
by danielm
Tue Oct 20, 2015 12:11 pm
Forum: Other Boards
Topic: ESP8266 issues starting out
Replies: 14
Views: 13843

Re: ESP8266 issues starting out

Few question related to MicroPython running on ESP8266:
- is it possible to boot from SD-card in SDIO mode and "mount" it to the file system?
- is it possible to use SPI interface?
by danielm
Mon Oct 19, 2015 2:14 pm
Forum: Programs, Libraries and Tools
Topic: paho-mqtt for MicroPython
Replies: 17
Views: 27299

paho-mqtt for MicroPython

I took a quick look at current implementation of paho-mqtt for Python. It has following dependencies: errno - several error codes used in the code (following module could be extended with necessary error codes and imported https://github.com/micropython/micropython-lib/blob/master/errno/errno.py) pl...
by danielm
Mon Oct 19, 2015 12:45 pm
Forum: Other Boards
Topic: EMW3165
Replies: 8
Views: 10221

Re: EMW3165

Are there any news regarding possibility of MicroPython running on this MCU?
by danielm
Sat Oct 17, 2015 9:50 am
Forum: Programs, Libraries and Tools
Topic: WAMP/AutobahnPython support in MicroPython
Replies: 10
Views: 13898

Re: WAMP/AutobahnPython support in MicroPython

Thank you for explanation, it is clear now. For the initial prototype I will use pyboard + CC3K. Hopefully later something like CC3200 or ESP8266 but with 2x integrated 12-bit DACs becomes available and supported by MicroPython, including sockets. EMW3165 is rumored to have DAC integrated, however t...