Skip to content

Commit

Permalink
Release v1.1.1
Browse files Browse the repository at this point in the history
- add info about frequency setting for ESP32 S2/S3/C3 to README
  • Loading branch information
JarekParal committed Aug 31, 2023
1 parent 8c565e3 commit 982184c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion library.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"url": "http://www.robotikabrno.cz",
"maintainer": true
},
"version": "1.1.0",
"version": "1.1.1",
"frameworks": "arduino",
"platforms": "espressif32"
}
2 changes: 1 addition & 1 deletion library.properties
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.
Expand Down

1 comment on commit 982184c

@nicgros
Copy link

@nicgros nicgros commented on 982184c May 9, 2024

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);

Please sign in to comment.