Search found 1 match
- Sat Nov 23, 2019 6:40 pm
- Forum: ESP32 Arduino
- Topic: MPU 6050 Stuck Values
- Replies: 1
- Views: 2928
MPU 6050 Stuck Values
hi guys, i am using tokn's MPU6050 library and the following example code: #include <MPU6050_tockn.h> #include <Wire.h> float Yang,Xang,Zang,Y,X,Z; MPU6050 mpu6050(Wire); void setup() { Serial.begin(115200); Wire.begin(); mpu6050.begin(); mpu6050.calcGyroOffsets(true); } void loop() { mpu6050.update...