I am using the “waveshare general driver for robots” which incorporates an esp32, motor controller, IMU and a few other things. And it is designed with a 40 pin connector so that I can serve as a “hat” for a raspberry Pi.
But there’s what I would consider a “defect” to the board. They pass through the two i2c pins from the esp32 to the raspberry pi 40 pin connector using the default 2 (or 4 depending on how you count) pins for the i2c. If you write code on the Pi to use i2C you end up having two i2c bus masters which is never allowed so this is not useful and worse, interferes with using i2c on the pi.
I can think of two ways to address this: either don’t attach the general driver board directly to the Pi. The only other pins that are live are the 5v/gnd pins. The esp32 itself is connected via a separate USB. So I can power the pi with a conventional usb supply. The other is to use what I read is called “software i2c” - bit banging (?) to reassign the two i2c pins (which I read my affect performance, but no idea if that’s true.)