sfromis
sfromis
I'm indeed experiencing `I2SWr` working better now. Next step is trying to get the microphone to work. Schematics shows that my board has a MEMS microphone, ICS-43434 with this pinout:...
Yes, same S3 [Bling from UnexpectedMaker](https://github.com/UnexpectedMaker/bling) as when testing audio output. As it has completely separate I2S pins for amplifier and microphone, it does not sound like full duplex makes...
Do not open an issue when there is already a discussion about how to make it work.
Looks like some much wider issue with non-small files. I tried to transfer a moderately sized file (`ftp.be`) with both Manage File system upload (web or via curl), or the...
Instead of simply `Wifi 0`, you might want the extra resilience from having Wifi again in case of Ethernet not available for whatever reason. https://tasmota.github.io/docs/Berry-Cookbook/#ethernet-network-flipper
Unfortunate side effect of this is that DNS server IP addresses become zeroed next boot.
That `#define RCSWITCH_SEPARATION_LIMIT 4100` could be "wrapped" in `#ifdef`, allowing it to be a build time option, which you can change in a custom build. While not "ideal", this would...
FTR, most example projects with Tasmota+Berry are published on Github repositories owned by the creator. I've collected a list of repositories including Berry code: http://sfromis.strangled.net/tasmota/berry/github-repositories
Well, of course using `https` will have to use more memory than unencrypted `http`, but with a string size of "only" 1395 bytes, that should not be a pain point....
Of course, `Serial.print` or `AddLog` does not apply to coding in Berry, where you instead have `print()` or `log()`. As a crash-proof technique, you could also write it to a...