-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- add info about frequency setting for ESP32 S2/S3/C3 to README
- Loading branch information
1 parent
8c565e3
commit 982184c
Showing
2 changed files
with
2 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
name=ServoESP32 | ||
version=1.1.0 | ||
version=1.1.1 | ||
author=Jaroslav Paral | ||
maintainer=Jaroslav Paral <[email protected]> | ||
sentence=Generate RC servo signal on a selected pins with ESP32 device and Arduino framework. | ||
|
982184c
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This version is not compatible with version 3.0 of the Arduino ESP32 core
error: 'SOC_LEDC_TIMER_BIT_WIDE_NUM' was not declared in this scope; did you mean 'SOC_LEDC_TIMER_BIT_WIDTH'?
68 | static const int TIMER_RESOLUTION = std::min(16, SOC_LEDC_TIMER_BIT_WIDE_NUM);
error: 'ledcSetup' was not declared in this scope
148 | ledcSetup(_channel, frequency, TIMER_RESOLUTION);
error: 'ledcAttachPin' was not declared in this scope; did you mean 'ledcAttach'?
149 | ledcAttachPin(_pin, _channel);
error: 'ledcDetachPin' was not declared in this scope; did you mean 'ledcDetach'?
168 | ledcDetachPin(_pin);