MOSTAFA NADERI
Results
2
comments of
MOSTAFA NADERI
> > > If you're using the Wemos ESP32 Lolin, I2C uses pins 5 and 4 for SDA and SCL respectively. So in your setup function, you need to have...
I changed some part and finally it work with esp8266 and Arduino IDE ``` #include #include MPU6050 mpu6050(Wire); int X, Y, Z; void setup() { Serial.begin(9600); Wire.begin(4,5,0x68); Wire. setClock (...