From 35185555bc362dfd9bb8e9faab1a97a3ee8b73b7 Mon Sep 17 00:00:00 2001 From: Oleg Kalachev Date: Mon, 1 Apr 2024 23:30:15 +0300 Subject: [PATCH] Add connection examples --- README.md | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/README.md b/README.md index 5bab1e9..2f33d26 100644 --- a/README.md +++ b/README.md @@ -45,6 +45,26 @@ Notice, that MPU6500 does not include a magnetometer, so magnetometer data will You can also use `` header and `MPU6500` class, which is an alias for `MPU9250` class. +### Connection + +Connecting GY-91 board to ESP32 using VSPI: + +* 3V3 → 3V3 +* GND → GND +* SCL → IO18 +* SDA (MOSI) → IO23 +* SAO (MISO) → IO19 +* NCS → IO5 + +Connecting MPU-92.65 board to ESP32 using VSPI: + +* VCC → 3V3 +* GND → GND +* SCL → IO18 +* SDA (MOSI) → IO23 +* AD0 (MISO) → IO19 +* NCS → IO5 + ## SBUS Example for SBUS receiver, connected to Serial2: @@ -68,3 +88,11 @@ void loop() { } } ``` + +### Connection + +Connecting SBUS receiver to ESP32: + +* VIN → 3V3 +* GND → GND +* SIGNAL → IO16 (RX2)