
Last seen: 2025-02-09 1:34 am
@speacock110 I have a raspberry pi but I have not done anything with it except turn it on an make sure it works. I was kind of surprised how powerf...
@speacock110 I would say you are well suited for this hobby as you have already tackled the learning curve. Have you done any projects with the ardu...
@tfmccarthy I see your reasoning. I used to always want the latest but they call it "bleeding edge" for a reason. Are you sure latest ide version...
@tfmccarthy I think you learned the hard way not to change too many things at once. Upgrading the ide is probably the least important as long as yo...
@Ron What first got my attention is the library name ESP_I2S. The I2S library name was changed from I2s (VERSION 2)to ESP_I2S (VERSION 3)and also t...
Based on those error messages. It looked when he installed the new arduino environment he also installed the latest version of esp-arduino framework ...
Hello, I have two cats but they live inside. Once you get this working and if wifi reaches out there maybe you can add a esp32 camera to watch them. G...
In the code for displaying audio on serial plotter. so why is bytesIn divided by 8 and not 4 ? int16_t samples_read = bytesIn / 8; I would think ...
It could be because it is geared there is a lot of inertia to overcome become before the motor starts to move. Maybe after it starts moving you can g...
Any major software release can have breaking changes. That not only goes for Espressif but for all other software vendors. So if you start a project u...
You can manipulate the data because you will be reading the data from the dma_rx_buffers into your own buffer. There you can apply what ever modifiica...
@danb I know. I was saying that the code will work with both switches pulled up if you use ! operator in the interrupt.
To work with pullups both statements in your interrupt should of been "Notted" (!). Then the if statements in the interrupt would be true on a high ...
@danb I have had to scroll around to look at different parts of your code to try to figure out what is going on. It would make it much easier t...
Do your buttons have pullups on them? Could your interrupt be changing states of other pins. Please post all your code, it will make it easier to he...