<potentiometer />
Overview
A potentiometer is a three-terminal resistor with a sliding or rotating contact that forms an adjustable voltage divider. You can also attach two terminals to create a variable resistor.
export default () => (
<board width="10mm" height="10mm">
<potentiometer
name="P1"
maxResistance="10k"
footprint="pinrow3"
/>
</board>
)
Variants (two or three terminals)
The <potentiometer />
element can be configured with two or three terminals
using the pinVariant
prop.
Pin Variant | Description |
---|---|
two_pin | Two terminals |
three_pin | Three terminals |
export default () => (
<board width="10mm" height="10mm">
<potentiometer
name="P1"
maxResistance="10k"
pinVariant="three_pin"
footprint="pinrow3"
/>
</board>
)