Neucrack
Neucrack
not support ssl in master branch, but develop branch do
firmware version?
upgrade to the [latest firmware](https://github.com/sipeed/MaixPy/releases/download/v0.3.2/maixpy_v0.3.2_no_lvgl.bin) first with tool [kflash_gui](https://github.com/sipeed/kflash_gui) or see [upgrade doc](https://maixpy.sipeed.com/zh/get_started/upgrade_firmware.html#)(use google translate plugin) or see [video](https://youtu.be/K46kFRur-Hw?t=296)(select english subtitle)
esp32 not fully supported yet
https://github.com/sipeed/MaixPy_scripts/blob/master/multimedia/audio/play_wav.py https://maixpy.sipeed.com/zh/libs/Maix/i2s.html https://maixpy.sipeed.com/zh/libs/Maix/audio.html
@linycm wait for the new release or build yourself firmware
@linycm The header of wav file you used have some problem, please send me your wav file, so I can check the header, or just convert to wav file maixpy...
@linycm This audio file uses ADPCM encoding. MaixPy only supports PCM 16bit little endian encoding. Please find a way to convert to such a format. There is no plan to...
add debounce and add limitation will be ok ``` if start_processing: record_ftr = feature record_ftrs.append(record_ftr) start_processing = False ``` limit record_ftrs length according to the names' length here, and we...
direct use pin as parameters and try again ? like: ``` spi1 = SPI(SPI.SPI1, mode=SPI.MODE_MASTER, baudrate=10000000, polarity=0, phase=0, bits=8, firstbit=SPI.MSB, sck=28, mosi=29, miso=30, cs0=27) ```