Skip to content

Commit 25346cd

Browse files
Steven WhiteSteven White
authored andcommitted
Merged PR 15878: completing the rendering fix
completing the rendering fix
1 parent 7989813 commit 25346cd

1 file changed

Lines changed: 6 additions & 7 deletions

File tree

‎windows.devices.gpio/gpiopindrivemode.md‎

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,6 @@ Configures the GPIO pin in strong drive mode, with low impedance.
2727

2828
<img src="images/output_pindrive.PNG" alt="output pin drive image" />
2929

30-
<br/>
31-
3230
If you call the [GpioPin.Write](gpiopin_write_1817827092.md) method for this pin with a value of **GpioPinValue.High**, the method produces a low-impedance high value for the pin. If you call the [GpioPin.Write](gpiopin_write_1817827092.md) method for this pin with a value of **GpioPinValue.Low**, the method produces a low-impedance low value for the pin.
3331

3432
If you call the [GpioPin.Read](gpiopin_read_431746835.md) method for this pin, the method returns the value previously written to the pin.
@@ -38,42 +36,43 @@ Configures the GPIO pin as high impedance with a pull-up resistor to the voltage
3836

3937
<img src="images/inputpullup_pindrive.png" alt="input pull up image" />
4038

41-
<br/>
42-
<br/>
43-
4439
If you call the [GpioPin.Read](gpiopin_read_431746835.md) method for this pin, the method returns the value previously written to the pin.
4540

4641
### -field InputPullDown:3
4742
Configures the GPIO pin as high impedance with a pull-down resistor to ground.
4843

4944
<img src="images/inputpulldown_pindrive.PNG" alt="input pull down image" />
45+
5046
If you call the [GpioPin.Read](gpiopin_read_431746835.md) method for this pin, the method returns the current value of the pin as driven externally.
5147

5248
### -field OutputOpenDrain:4
5349
Configures the GPIO in open drain mode.
5450

5551
<img src="images/outputopendrain_pindrive.PNG" alt="output open drain image" />
52+
5653
If you call the [GpioPin.Write](gpiopin_write_1817827092.md) method for this pin with a value of **GpioPinValue.Low**, the method drives a value of low to the pin. If you call the [GpioPin.Write](gpiopin_write_1817827092.md) method for this pin with a value of **GpioPinValue.High**, the method places the pin in floating mode.
5754

5855
### -field OutputOpenDrainPullUp:5
5956
Configures the GPIO pin in open drain mode with resistive pull-up mode.
6057

6158
<img src="images/outputopendrainpullup_pindrive.PNG" alt="output open drain pull up image" />
59+
6260
If you call the [GpioPin.Write](gpiopin_write_1817827092.md) method for this pin with a value of **GpioPinValue.Low**, the method produces a low-impedance low state. If you call the [GpioPin.Write](gpiopin_write_1817827092.md) method for this pin with a value of **GpioPinValue.High**, the method configures the pin as high impedance with a pull-up resistor to VCC.
6361

6462
### -field OutputOpenSource:6
6563
Configures the GPIO pin in open collector mode.
6664

6765
<img src="images/outputopensource_pindrive.PNG" alt="output open source image" />
66+
6867
If you call the [GpioPin.Write](gpiopin_write_1817827092.md) method for this pin with a value of **GpioPinValue.High**, the method drives a value of high onto the pin. If you call the [GpioPin.Write](gpiopin_write_1817827092.md) method for this pin with a value of **GpioPinValue.Low**, the method configures the pin in floating mode.
6968

7069
### -field OutputOpenSourcePullDown:7
7170
Configures the GPIO pin in open collector mode with resistive pull-down mode.
7271

73-
If you call the [GpioPin.Write](gpiopin_write_1817827092.md) method for this pin with a value of **GpioPinValue.High**, the method drives a value of high onto the pin. If you call the [GpioPin.Write](gpiopin_write_1817827092.md) method for this pin with a value of **GpioPinValue.Low**, the method configures the pin as high impedance with a pull-down resistor to ground.
74-
7572
<img src="images/outputopensourcepulldown_pindrive.PNG" alt="output open source pull down image" />
7673

74+
If you call the [GpioPin.Write](gpiopin_write_1817827092.md) method for this pin with a value of **GpioPinValue.High**, the method drives a value of high onto the pin. If you call the [GpioPin.Write](gpiopin_write_1817827092.md) method for this pin with a value of **GpioPinValue.Low**, the method configures the pin as high impedance with a pull-down resistor to ground.
75+
7776
## -remarks
7877

7978
## -examples

0 commit comments

Comments
 (0)