From 589a1ac95bcdcb609cc94c814c685f11652e5e1e Mon Sep 17 00:00:00 2001 From: Alexandre Bobkov Date: Sun, 6 Jul 2025 11:32:48 -0400 Subject: [PATCH] grammar --- ESP-IDF_Robot/tutorial/docs/source/intro.rst | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/ESP-IDF_Robot/tutorial/docs/source/intro.rst b/ESP-IDF_Robot/tutorial/docs/source/intro.rst index c8a0470af..a30081953 100644 --- a/ESP-IDF_Robot/tutorial/docs/source/intro.rst +++ b/ESP-IDF_Robot/tutorial/docs/source/intro.rst @@ -1,18 +1,18 @@ OVERVIEW ============ -At the heart of this project is a customizable remote-controlled car that responds to real-time control inputs — capable of handling speed adjustments, +At the heart of this project is a customizable remote-controlled car that responds to real-time control inputs, capable of handling speed adjustments, directional changes, and even extended features like lights or sensors. The foundational setup uses ESP-NOW for transmitter and receiver devices, -allowing you to wirelessly guide the car's behavior. While the design and physical appearance of the RC car can vary wildly depending on your +allowing you to wirelessly guide the car's behaviour. While the design and physical appearance of the RC car can vary wildly depending on your creativity and available hardware, the control system remains elegantly efficient. To facilitate wireless communication between devices, the system employs -ESP-NOW, a lightweight and connection-free protocol ideal for fast, low-latency data transmission between ESP32 microcontrollers. Though ESP-NOW is used under +ESP-NOW is a lightweight and connection-free protocol ideal for fast, low-latency data transmission between ESP32 microcontrollers. Though ESP-NOW is used under the hood, the spotlight remains on the RC car itself: how it moves, adapts, and evolves with your ideas. -An ESP-NOW-based remote-controller sends control data wirelessly using the ESP-NOW protocol to the remote-controlled car. ESP-NOW enables fast and -efficient communication between ESP32 devices without the need for Wi-Fi router, network nor pairing. The provided tutorial demonstrates a functional -setup where a transmitter sends data to a receiver to define the car's speed and direction — forming the core communication loop. While the baseline +An ESP-NOW-based remote controller sends control data wirelessly using the ESP-NOW protocol to the remote-controlled car. ESP-NOW enables fast and +efficient communication between ESP32 devices without the need for a Wi-Fi router, network, or pairing. The provided tutorial demonstrates a functional +setup where a transmitter sends data to a receiver to define the car's speed and direction, forming the core communication loop. While the baseline implementation focuses on movement, additional features like lights, sensors, or telemetry can easily be integrated by expanding the source code. This -modular design gives users the freedom to customize both the appearance and behavior of their RC car, resulting in endless creative possibilities. +modular design gives users the freedom to customize both the appearance and behaviour of their RC car, resulting in endless creative possibilities. ABSTRACT --------