DonvdH
DonvdH
The reason appears to be that there are two events hitting the webhook simultaneously, for example: subscription_created (contains cancel_url field) subscription_payment_succeeded (contains no cancel_url field) Depending on the order they...
Great to hear that you are so actively involved with smartwatch development. I have also looked at the Pinetime and Wasp-OS by the way. While it also looks very nice,...
Nice job, that's an impressive performance which is being achieved there by the micropython.native decorator. There are numerous strategies to add delay. In this specific case I would start out...
I appreciate your persistence. :) Keep in mind that I'm not an audio specialist and my time is unfortunately rather limited. Also I don't currently have plans to use the...
I believe that, given the lack of available Micropython libraries for PDM conversion, the best solution would be to transfer the PDM data to a HTTP API and then convert...
You're using a decimation factor of 16: pdm_buffer = cic_filter(pdm_buffer, 4, 16, 1) With a corresponding pcm buffer length: pcm_data = array.array('H', [0] * (len(pdm_data) // 16)) This results in...
Regarding the play duration, you're still dividing the buffer length by 16 in pdm_to_pcm: pcm_data = array.array('H', [0] * (len(pdm_data) // 16))
Best course of action would be to first use the PDM2PCM tool I mentioned to validate whether the PDM data is valid at all: https://github.com/siorpaes/pdm_playground/tree/master/pdm2pcm Now you basically don't know...
> You're not going to like it but it's a mix of intuition and GPT-4 prompting. Unfortunately it's getting worse and worse as they RLHF it but it's still faster...
Thanks a lot for your quick response! That appears to be correct indeed. However, even with this change I'm unfortunately still not getting any sound.. Have you got any other...