You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: docs/build/micro-rdk/motor/gpio.md
+9-6
Original file line number
Diff line number
Diff line change
@@ -51,14 +51,14 @@ Edit and fill in the attributes as applicable.
51
51
"namespace": "rdk",
52
52
"attributes": {
53
53
"pins": {
54
-
<...>
54
+
"dir": "<int>",
55
+
"pwm": "<int>"
55
56
},
56
57
"board": "<your-board-name>",
57
58
"min_power_pct": <float>,
58
59
"max_power_pct": <float>,
59
60
"pwm_freq": <float>,
60
-
"dir_flip": <float>,
61
-
"en_low": <float>
61
+
"dir_flip": <float>
62
62
},
63
63
"depends_on": []
64
64
}
@@ -114,22 +114,25 @@ The following attributes are available for `gpio` motors:
114
114
|`max_power_pct`| number | Optional | Range is 0.06 to 1.0; sets a limit on maximum power percentage sent to the motor. <br> Default: `1.0`|
115
115
|`pwm_freq`| int | Optional | Sets the PWM pulse frequency in Hz. Many motors operate optimally in the kHz range. <br> Default: `800`|
116
116
|`dir_flip`| bool | Optional | Flips the direction of "forward" versus "backward" rotation. Default: `false`|
117
-
|`en_high` / `en_low`| string | Optional | Some drivers have optional enable pins that enable or disable the driver chip. If your chip requires a high signal to be enabled, add `en_high` with the pin number to the pins section. If you need a low signal use `en_low`. |
118
117
|`encoder`| string | Optional | The name of an encoder attached to this motor. See [encoded motor](/build/configure/components/motor/gpio/encoded-motor/). |
119
118
120
119
Refer to your motor and motor driver data sheets for specifics.
121
120
122
121
## `pins`
123
122
124
-
There are two common ways for your computer to communicate with a brushed DC motor driver chip that are supported in the micro-RDK.
123
+
There are three common ways for your computer to communicate with a brushed DC motor driver chip.
125
124
**Your motor driver data sheet will specify which one to use.**
126
125
127
126
- PWM/DIR: Use this if one of your motor driver's pins (labeled "PWM") takes a [pulse width modulation (PWM)](https://en.wikipedia.org/wiki/Pulse-width_modulation) signal to the driver to control speed while another pin labeled "DIR" takes a high or low signal to control the direction.
128
127
- Configure `pwm` and `dir`.
128
+
- In1/In2: Use this if your motor driver has pins labeled "IN1" and "IN2" or "A" and "B," or similar.
129
+
One digital signal set to a high voltage and another set to a low voltage turns the motor in one direction and vice versa.
130
+
Speed is controlled with PWM through one or both pins.
131
+
- Configure `a` and `b`.
129
132
- In1/In2 and PWM: Use this if your motor driver uses three pins: In1 (A) and In2 (B) to control direction and a separate PWM pin to control speed.
130
133
- Configure `a`, `b`, and `pwm`.
131
134
132
-
Inside the `pins` struct you need to configure **two or three** of the following, depending on your motor driver:
135
+
Inside the `pins` struct you need to configure **two or three** of the following depending on your motor driver:
0 commit comments