Search found 7 matches

by hansamann
Sat Jan 25, 2020 4:28 pm
Forum: Other Boards
Topic: Wemos W600-Pico
Replies: 22
Views: 15759

Wemos W600-Pico

I've read about the W600-Pico and ordered a few. After installing the driver for Mac, I can connect to the REPL on this tiny $2 board. All cool - it seems to connect to the internet, too. Who else has got some experience? How woudl I save a program to the W600 permanently, so it starts again when pl...
by hansamann
Tue Jan 03, 2017 3:34 pm
Forum: ESP8266 boards
Topic: Where is documentation on u* libs like urequests?
Replies: 1
Views: 2906

Where is documentation on u* libs like urequests?

Hi all, I remember from the kickstarter updates, that libraries like urequests are implemented. I would like to make some web requests the easy way and then act accordingly with the hardware for example. Somehow I cannot find the documentation or examples for these libs any more. Where are the docs ...
by hansamann
Tue Jul 12, 2016 7:50 pm
Forum: ESP8266 boards
Topic: MQTT username/password
Replies: 1
Views: 3052

MQTT username/password

Hi, just wanted to try the umqtt library but noticed that it does not (yet) support username/password. Can anyone comment if this is planned for the the foreseeable future? It's super important to have at least basic security, otherwise connecting it to Adafruit MQTT etc is not possible.

Thx
Sven
by hansamann
Thu Jun 09, 2016 2:51 pm
Forum: ESP8266 boards
Topic: Potential urequests out of memory?
Replies: 9
Views: 9341

Potential urequests out of memory?

I am trying to get a basic https Oauth2 request running on the eps8266, here's my code which you can try out yourself, too, including the id and secret as I just created a new app that I just setup for this purpose: import urequests client_id = 'xf2ZD11MDHDdNhdHNs1Am0PAwhFVeqPH' client_secret = 'hP5...
by hansamann
Thu Jun 09, 2016 2:38 pm
Forum: ESP8266 boards
Topic: Header support in urllib or requests
Replies: 4
Views: 4989

Header support in urllib or requests

Looking at the urllib.urequest code, it seems there is no header support at all. That's the reason why my current request is failing. Is there a chance to get header support implemented soon? import urllib.urequest endpoint = 'https://api.yaas.io/hybris/oauth2/b1/token' urlencoded = 'grant_type=clie...
by hansamann
Thu Jun 09, 2016 1:44 pm
Forum: ESP8266 boards
Topic: OTA
Replies: 2
Views: 4788

OTA

I am wondering how OTA would be realized using MicroPython. In my mind: - if connected, the board keeps polling a http endpoint from time to time. Or: receives a trigger via MQTT for example - downloads a new py script and saves it in the file system - reconfigures the boot.by to load the new py scr...
by hansamann
Thu Jun 09, 2016 1:42 pm
Forum: ESP8266 boards
Topic: Initial Setup via AP
Replies: 8
Views: 10705

Initial Setup via AP

I would like to create a script using MicroPython that initially, when the esp8266 is not yet configured, starts in AP mode and opens a configuration web page for choosing a wifi access point and managing the password. Also when it is configured and cannot connect, it should fall back into this AP m...