Skip to content

Commit 7c0019f

Browse files
authored
DOCS-1463: Update micro-RDK GPIO motor attributes (#2267)
1 parent 9bafb69 commit 7c0019f

File tree

1 file changed

+9
-6
lines changed

1 file changed

+9
-6
lines changed

docs/build/micro-rdk/motor/gpio.md

+9-6
Original file line numberDiff line numberDiff line change
@@ -51,14 +51,14 @@ Edit and fill in the attributes as applicable.
5151
"namespace": "rdk",
5252
"attributes": {
5353
"pins": {
54-
<...>
54+
"dir": "<int>",
55+
"pwm": "<int>"
5556
},
5657
"board": "<your-board-name>",
5758
"min_power_pct": <float>,
5859
"max_power_pct": <float>,
5960
"pwm_freq": <float>,
60-
"dir_flip": <float>,
61-
"en_low": <float>
61+
"dir_flip": <float>
6262
},
6363
"depends_on": []
6464
}
@@ -114,22 +114,25 @@ The following attributes are available for `gpio` motors:
114114
| `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` |
115115
| `pwm_freq` | int | Optional | Sets the PWM pulse frequency in Hz. Many motors operate optimally in the kHz range. <br> Default: `800` |
116116
| `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`. |
118117
| `encoder` | string | Optional | The name of an encoder attached to this motor. See [encoded motor](/build/configure/components/motor/gpio/encoded-motor/). |
119118

120119
Refer to your motor and motor driver data sheets for specifics.
121120

122121
## `pins`
123122

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.
125124
**Your motor driver data sheet will specify which one to use.**
126125

127126
- 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.
128127
- 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`.
129132
- 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.
130133
- Configure `a`, `b`, and `pwm`.
131134

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:
133136

134137
<!-- prettier-ignore -->
135138
| Name | Type | Inclusion | Description |

0 commit comments

Comments
 (0)