water5
water5
I use /ir_rx/acquire.py receive several IR remote controllers via below: ```python from ir_rx.acquire import * ira = IR_GET(Pin(23, Pin.IN)) ira.acquire() ``` Most IR remote controllers acquire success, but one of...
[https://numpy.org/doc/1.21/reference/generated/numpy.insert.html](https://numpy.org/doc/1.21/reference/generated/numpy.insert.html) ```python b = np.array([[1, 2, 3], [4, 5, 6]]) ``` >array([[1, 2, 3], > [4, 5, 6]]) ```python np.insert(b, 1, [7, 8, 9]) ``` >array([1, 7, 8, 9, 2,...
[https://numpy.org/doc/stable/reference/maskedarray.generic.html](https://numpy.org/doc/stable/reference/maskedarray.generic.html) `numpy.ma` have some functions, can we implement several? `numpy.ma.array`, `numpy.ma.ones`, `numpy.ma.empty`, `numpy.ma.arange`, `numpy.ma.masked_where` ```python import numpy.ma as ma a = ma.arange(25).reshape(5, 5) a ``` >masked_array( > data=[[ 0, 1,...
[https://numpy.org/doc/stable/reference/generated/numpy.unique.html](https://numpy.org/doc/stable/reference/generated/numpy.unique.html)
[https://numpy.org/doc/stable/reference/generated/numpy.ndarray.html](https://numpy.org/doc/stable/reference/generated/numpy.ndarray.html) Refer numpy.ndarray(shape), its parameter is shape, although arrays should be constructed using array(), arange(), zeros() ... and ulab.numpy support 2D array currently, but I think compatible numpy.ndarray() will be...
I try to let it handle some actual xml feed document, it seems can't handle none pairs type XML dedicated elements, e.g. `` will arise : > Traceback (most recent...
I try to connect two INMP441, and change `channelformat = I2S.RIGHT_LEFT`, rise error below: > E (39778) I2S: Error malloc dma buffer > /home/miket/micropython_projects/esp-idf-v4-0-2-e5f754b/components/freertos/queue.c:1802 (vQueueDelete)- assert failed! > abort() was...
Refer some Audio editor software, can we get value range from `Scale` or implement a new widgets?  e.g. get/return value range (start: -40, finish: 60) between two block on...
The help document seems incorrect, type of `resolution`, `tick_resolution` should be `float`, [https://github.com/TkinterEP/ttkwidgets/blob/master/ttkwidgets/timeline.py#L100](https://github.com/TkinterEP/ttkwidgets/blob/master/ttkwidgets/timeline.py#L100) > :param resolution: Amount of time per pixel [s/pixel] > :type resolution: int > :param tick_resolution: Amount...
### Fix docs: - type resolution: float - type tick_resolution: float