-
On the I2C peripheral page (http://docs.micropython.org/en/latest/library/machine.I2C.html), in the example no SCL or SDA is defined, however the class initialisation claims SDA/SCL to be mandatory, a…
-
Very promising script. But in my case the process completed and no chance to get cusi running.
I have a stickC plus connected at /dev/tty.usbserial-45525442E6.
But: $ cusi /dev/tty.usbserial-455…
-
First, CircuitPython has great networking support! It is amazing how much you can do with it. While I'm aware of wifi.radio.ping, I've recently been attempting to manually create an ICMP ping as a R…
-
When trying to use microphone on Seeed WIO Terminal, I received an error when initializing ADC:
```
MPY: soft reboot
MicroPython v1.22.0-preview.86.g7ad84e042 on 2023-11-03; Wio Terminal D51R with…
-
Following README.md
```py
git clone https://github.com/ghubcoder/micropython-pico-deepsleep.git
cd micropython-pico-deepsleep/
make -C mpy-cross/
git submodule update --init -- lib/pico-sdk
git …
-
Hi,
When trying to read an adc value from the adc pins on the esp32s3 I get the following output:
>>> from machine import ADC
>>> adc = ADC(machine.Pin(7, machine.Pin.IN))
Traceback (most rece…
-
I compile lv_micropython, and execute the following code:
```python
import lvgl as lv
import time
from espidf import SPI3_HOST
# from ili9XXX import ili9341
from xpt2046 import xpt2046
import…
-
The ESP32 port for MicroPython 1.21.0 cannot be built with `MICROPY_PY_NETWORK_WLAN` set to `0` in my custom board's `mpconfigboard.h` file. I'm disabling WiFi support to save flash space and with th…
-
The [`aioespnow`](https://github.com/micropython/micropython-lib/blob/master/micropython/aioespnow/aioespnow.py) module is now available in `micropython-lib`. However, it is unclear how users are inte…
-
Hi there,
I'm trying to integrate MicroPython into some of our existing ESP32 firmware projects, as an ESP-IDF component instead of making it as a standalone ESP32 firmware.
Here's my repo:
-…