Proddy
Proddy
@pacav69 do you make a schematic in the end? I'm trying to figure out why a logic level converter was used since the ESP32 will provide both 3.3V and 5V.
I think it also used to power the DFPlayer which I read doesn't really like 5V, but plays nicely at around 4.1V.
I'm using 5V on my design and its working fine. I had so many issues with DFRobots mp3 library I ended up using https://github.com/Makuna/DFMiniMp3
not sure if it helps, for single selection I grab the state.id and store it ``` async function onSelectChange(action: any, state: any) { setSelectedDevice(state.id); if (action.type === 'ADD_BY_ID_EXCLUSIVELY') { await...
Thanks @Chris--A - I'll try that out. When I first wrote the first version of my app, many moons ago, it was ESP8266 based I was obsessed with memory optimization...
I started my port today from AsyncWebServer and stumbled across the `AsyncJsonResponse` which I use a lot. It would be good to have this supported. I'm keeping notes of what...
> It should be fairly straightforward to add this functionality. I basically just ported the minimum for my project and then have been doing the rest of the features as...
@EvEggelen I see you're using Rick's esp8266-react library. I'm using a similar library based off this which I've updated in the last years, and also porting over to remove AsyncTCP...
> Thanks. With some code changes it fixed the problem. It seems the intention is to notify the class(s) when the response is send out. Still wondering if that really...
@EvEggelen I finished the port, although still some rough patches to smooth out. I haven't enabled HTTPS/SSL yet or ported the Event Streaming, but that should go quick and smooth....