4.4 KiB
DShotRMT - ESP32 RMT DShot Driver
A C++ library for generating DShot signals on ESP32 microcontrollers using the RMT (Remote Control) peripheral. It's designed for both Arduino and ESP-IDF projects, providing a simple and efficient way to control brushless motors.
This library is a rewrite using the modern ESP-IDF 5 RMT encoder API (rmt_tx.h / rmt_rx.h) for improved performance and flexibility. The legacy version using the old rmt.h API is available in the oldAPI branch.
🚀 Core Features
- Multiple DShot Modes: Supports DSHOT150, DSHOT300, DSHOT600, and DSHOT1200.
- Bidirectional DShot: Full support for RPM telemetry feedback.
- Hardware-Timed Signals: Precise signal generation using the ESP32 RMT peripheral, ensuring stable and reliable motor control.
- Simple API: Easy-to-use C++ class for sending throttle commands and receiving telemetry data.
- Efficient and Lightweight: The core library has no external dependencies.
- Arduino and ESP-IDF Compatible: Can be used in both Arduino and ESP-IDF projects.
📦 Installation
Arduino IDE
- Open the Arduino Library Manager (
Sketch>Include Library>Manage Libraries...). - Search for "DShotRMT" and click "Install".
- Alternatively, you can clone this repository or download it as a ZIP file and place it in your Arduino libraries folder (
~/Arduino/libraries/DShotRMT/).
PlatformIO
Add the following to your platformio.ini file:
lib_deps =
https://github.com/derdoktor667/DShotRMT.git
⚡ Quick Start
Here's a basic example of how to use the DShotRMT library to control a motor:
#include <Arduino.h>
#include <DShotRMT.h>
// Define the GPIO pin connected to the motor ESC
const gpio_num_t MOTOR_PIN = GPIO_NUM_27;
// Create a DShotRMT instance for DSHOT300
DShotRMT motor(MOTOR_PIN, DSHOT300);
void setup() {
Serial.begin(115200);
// Initialize the DShot motor
motor.begin();
Serial.println("Motor initialized. Sending low throttle for 5 seconds...");
// Send a low throttle command for 5 seconds
for (int i = 0; i < 500; i++) {
motor.sendThrottle(100);
delay(10);
}
Serial.println("Stopping motor.");
motor.sendThrottle(0);
}
void loop() {
// Your main code here
}
🎮 Examples
The examples folder contains more advanced examples:
dshot300: A simple example demonstrating how to send DShot commands and receive telemetry via the serial monitor.web_control: A full-featured web application for controlling a motor from a web browser. It creates a WiFi access point and serves a web page with a throttle slider and arming switch.web_client: A variation of theweb_controlexample that connects to an existing WiFi network instead of creating its own access point.
Dependencies for Web Examples
The web_control and web_client examples require the following additional libraries:
You can install these libraries using the Arduino Library Manager or by adding them to your platformio.ini file:
lib_deps =
https://github.com/derdoktor667/DShotRMT.git
https://github.com/bblanchon/ArduinoJson
https://github.com/ESP32Async/ESPAsyncWebServer
https://github.com/ESP32Async/AsyncTCP
📚 API Reference
The main class is DShotRMT. Here are the most important methods:
DShotRMT(gpio_num_t gpio, dshot_mode_t mode, bool is_bidirectional = false): Constructor to create a new DShotRMT instance.begin(): Initializes the RMT peripheral and the DShot encoder.sendThrottle(uint16_t throttle): Sends a throttle value (48-2047) to the motor.sendCommand(uint16_t command): Sends a DShot command (0-47) to the motor.getTelemetry(uint16_t magnet_count): Receives and parses telemetry data from the motor (for bidirectional DShot).
For more details, please refer to the DShotRMT.h header file.
🤝 Contributing
Contributions are welcome! Please fork the repository, create a feature branch, and submit a pull request.
📄 License
This project is licensed under the MIT License. See the LICENSE file for details.