-
Hi all.
I would like a simple example of uasyncio WebSocket Server (secure - with SSL). I see that there is a official `uwebsocket` module implemented on MicroPython.
```
>>> import os
>>> os…
-
Environment: NodeMcu clone ESP8266 with picoweb built into custom firmware
1. Copy _example_webapp2.py_ to esp8266 and _squares.tpl_ into _templates_ dir
2. Connect to network as station
3. Add I…
-
I'm using a raspberry Pi Pico W. I uploaded the necessary drivers to the rp and connected the wires like the instructions said on setup_examples/ili9488_ws_pico_res_touch_pico.py. Everything compiles …
-
Hello, all works fine when used by `net` (`sta`) mode - the default mode. But in the `ap` mode, sometimes some errors happen. I can't tell you exactly how to reproduce that errors because sometimes wo…
-
https://github.com/belyalov/tinyweb/blob/33d73c90f005cfd3423affe358cad0f13c37728f/tinyweb/server.py#L689
Board: esp8266, generic nodeMCU dev board
Micropython: 1.17 (esp8266 port), with frozen mod…
-
after commit for uasyncio streamreader, data read from rs485 always b"". If reverse back, start works like before.
https://github.com/micropython/micropython/commit/db7682e02d3ffd3338f20effc9ad4735a4…
-
I've just spent far too long debugging, what is essentially the following code:
```python
#!/usr/bin/env python
try:
import asyncio
except ImportError:
import uasyncio as asyncio
lo…
-
To repro link pins 0 and 1 and paste the following:
```python
from machine import UART, Pin
uart = UART(0, 115200, rx=Pin(1, Pin.IN), tx=Pin(0, Pin.OUT), timeout=1000_000, timeout_char=1000_000)
u…
-
I am getting the following error trying to initialize wifi network using `.connect`:
```
ampy.pyboard.PyboardError: ('exception', b'', b'Traceback (most recent call last):\r\n File "", line 19, i…
-
when toggle is called with a time parameter utime.sleep() is called and the device is unable to react for any other request. If this time is very long, let's say hours, you can not change or read the…