From 9bffe5b52f214e45ca197ab5e0dc5300f05c7fde Mon Sep 17 00:00:00 2001 From: Oleg Kalachev Date: Sun, 26 Apr 2026 06:05:02 +0300 Subject: [PATCH] Some fixes in docs --- README.md | 6 ++++-- tools/pyflix/README.md | 2 +- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index d9907a7..42425a1 100644 --- a/README.md +++ b/README.md @@ -77,7 +77,7 @@ Additional articles: |Motor|8520 3.7V brushed motor.
Motor with exact 3.7V voltage is needed, not ranged working voltage (3.7V — 6V).
Make sure the motor shaft diameter and propeller hole diameter match!||4| |Propeller|55 mm (alternatively 65 mm)||4| |MOSFET (transistor)|100N03A or [analog](https://t.me/opensourcequadcopter/33)||4| -|Pull-down resistor|10 kΩ||4| +|Pull-down resistor
Voltage measurement resistor|10 kΩ||6| |3.7V Li-Po battery|LW 952540 (or any compatible by the size)||1| |Battery connector cable|MX2.0 2P female||1| |Li-Po Battery charger|Any||1| @@ -154,10 +154,12 @@ You can see a user-contributed [variant of complete circuit diagram](https://mir |VIN|VCC (or 3.3V depending on the receiver)| |Signal (TX)|GPIO4¹| -*¹ — UART2 RX pin was [changed](https://docs.espressif.com/projects/arduino-esp32/en/latest/migration_guides/2.x_to_3.0.html#id14) to GPIO4 in Arduino ESP32 core 3.0.* + *¹ — UART2 RX pin was [changed](https://docs.espressif.com/projects/arduino-esp32/en/latest/migration_guides/2.x_to_3.0.html#id14) to GPIO4 in Arduino ESP32 core 3.0.* * Optionally connect the battery voltage divider for voltage monitoring to any ADC1 pin (e. g. *GPIO32* on ESP32, *GPIO3* on ESP32S3). + ESP32 and ESP32S3 [can measure](https://docs.espressif.com/projects/arduino-esp32/en/latest/api/adc.html#analogsetattenuation) up to 3.1 V and ESP32S3/ESP32C3 can measure up to 2.5 V, so choose the voltage divider resistors accordingly. + ## Resources * Telegram channel on developing the drone and the flight controller (in Russian): https://t.me/opensourcequadcopter. diff --git a/tools/pyflix/README.md b/tools/pyflix/README.md index ade6d4a..583d510 100644 --- a/tools/pyflix/README.md +++ b/tools/pyflix/README.md @@ -30,7 +30,7 @@ flix = Flix() # create a Flix object and wait for connection ### Telemetry -Basic telemetry is available through object properties. The property names generally match the corresponding variables in the firmware itself: +Basic telemetry is available through object properties. The property names generally match the corresponding variables in the firmware code: ```python print(flix.connected) # True if connected to the drone