Слияние кода завершено, страница обновится автоматически
I can flash the firmware for esp32c3 generic but cannot upload any programs after that. Message that I get on uploading is:
[Error] Interrupt failed
=== Upload failed ===
If I flash the board with standard esp32c3 micropython (e.g. using Thonny), I can upload mixly code that I write. However, the dht11/22 module is not compatible with the standard micropython firmware.
mixly version:
import dhtx
...
temp = dhtx.DHT11(3).temperature()
println(temp)
standard micropython version:
import dht
...
sensor = dht.DHT11(3)
sensor.measure()
temp = sensor.temperature()
println(temp)