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 8a11d2c commit 82a5efeCopy full SHA for 82a5efe
readme.md
@@ -16,7 +16,7 @@
16
### Setup
17
18
```ino
19
-ServoMotor [name] = { int servo, int angle };
+ServoMotor [name] = { int servo };
20
```
21
**Parameters**
22
@@ -27,20 +27,19 @@ ServoMotor [name] = { int servo, int angle };
27
**Example**
28
29
30
-ServoMotor example = {9, 27};
+ServoMotor example = 9;
31
32
33
### Use
34
35
36
-Servo.move(Servo i, int angle);
+Servo.move(int angle);
37
38
39
**Description** Move the Servo
40
41
42
* `Servo [ before the word "move" ]` Name of the defined `Servo` class
43
-* `i` Name of the defined `Servo` class
44
* `angle` Angle to rotate
45
46
0 commit comments