Я использовал Arduino
uno для загрузки эскиза в модуль esp 01.Я прикрепил изображение, как я подключил esp-01
и mpu6050
, браузер непрерывно печатает значения гироскопа, но с увеличением на 0,01 мне нужны реальные значения гироскопа
[1]
#include <ESP8266WiFi.h>
#include <MPU6050_tockn.h>
#include <Wire.h>
MPU6050 mpu6050(Wire);
const char* ssid = "TP-LINK";
const char* password = "1913131";
// Create an instance of the server
// specify the port to listen on as an argument
WiFiServer server(80);
void setup() {
Serial.begin(115200);
delay(1000);
// Connect to WiFi network
Serial.println();
Serial.println();
Serial.print("Connecting to ");
Serial.println(ssid);
WiFi.mode(WIFI_STA);
WiFi.begin(ssid, password);
while (WiFi.status() != WL_CONNECTED) {
delay(500);
Serial.print(".");
}
Serial.println("");
Serial.println("WiFi connected");
// Start the server
server.begin();
Serial.println("Server started");
// Print the IP address
Serial.println(WiFi.localIP());
delay(5000);
//Serial.begin(9600);
Wire.begin(0,2);
delay(1000);
mpu6050.begin();
delay(1000);
mpu6050.calcGyroOffsets(true);
delay(1000);
}
void loop() {
// Check if a client has connected
WiFiClient client = server.available();
if (!client) {
Serial.print("Client did not connect");
delay(1000);
return;
}
// Wait until the client sends some data
Serial.println("new client");
while (!client.available()) {
delay(1);
}
while(client.available()){
mpu6050.update();
client.print(mpu6050.getGyroAngleX());
client.print(",");
client.print(mpu6050.getGyroAngleY());
client.print(",");
client.println(mpu6050.getGyroAngleZ());
delay(10);
}
delay(1);
Serial.println("Client disonnected");
// The client will actually be disconnected
// when the function returns and 'client' object is detroyed
}
> Blockquote
, когда клиент фактически подключается и когда я вхожу в ipзначения адреса в браузере, напечатанные в браузере, равны 0,69, 0,6, 0, 60, 0,70, 0,7, 0, 60, 0,70 и продолжают увеличивать значения на 0,01, но мне нужно реальное чтение гироскопа.помогите мне пожалуйста
Я подключил esp 01 и mpu6050 как на этом изображении Элемент списка