We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7fc5b7f commit ea6388eCopy full SHA for ea6388e
README.md
@@ -1,2 +1,29 @@
1
# deneyap-servo-arduino-library
2
Includes specific functions to drive servo motors by ESP32, ESP32-S2, ESP32-C3 and ESP32-S3 based development boards.
3
+
4
+### SDK
5
+List fo Functions
6
7
+```c++
8
+void attach(int pin, int channel, int freq, int resolution);
9
+void write(int value);
10
+```
11
12
+### Example
13
+This is an example.
14
15
16
+#include <Deneyap_Servo.h>
17
18
+Servo myservo;
19
20
+void setup() {
21
+ myservo.attach(D9);
22
+}
23
24
+void loop() {
25
+ myservo.write(60);
26
27
28
+## :bookmark_tabs:License Information
29
+Please review the [LICENSE](https://github.com/deneyapkart/deneyap-servo-arduino-library/blob/master/LICENSE) file for license information.
0 commit comments