#include <mcp23x17.h>
◆ GetPin()
template<typename Transport >
Fetches pin state from the result of recent Read() call. Useful to preserve unneeded reads.
- Parameters
-
- Returns
- uint8_t pin state: 0x00 or 0xFF
◆ Init() [1/2]
template<typename Transport >
◆ Init() [2/2]
template<typename Transport >
◆ PinMode()
template<typename Transport >
Controls a single pin direction. Pin 0-7 for port A, 8-15 fo port B.
1 = Pin is configured as an input. 0 = Pin is configured as an output.
See "3.5.1 I/O Direction register".
◆ PortMode()
template<typename Transport >
void daisy::Mcp23X17< Transport >::PortMode |
( |
MCPPort | port, |
|
|
uint8_t | directions, |
|
|
uint8_t | pullups = 0xFF, |
|
|
uint8_t | inverted = 0x00 ) |
|
inline |
Controls the pins direction on a whole port at once.
directions: 0 - output, 1 - input pullups: 0 - disabled, 1 - enabled inverted: 0 - false/normal, 1 - true/inverted
See "3.5.1 I/O Direction register".
◆ Read()
template<typename Transport >
Reads pins state for both ports.
1 = Logic-high 0 = Logic-low
See "3.5.10 Port register".
◆ ReadPin()
template<typename Transport >
Reads a single pin state. Pin 0-7 for port A, 8-15 for port B.
1 = Logic-high 0 = Logic-low
See "3.5.10 Port register".
◆ ReadPort()
template<typename Transport >
Reads pins state for a whole port.
1 = Logic-high 0 = Logic-low
See "3.5.10 Port register".
◆ Write()
template<typename Transport >
Writes pins state to both ports.
1 = Logic-high 0 = Logic-low
See "3.5.10 Port register".
◆ WritePin()
template<typename Transport >
Writes a single pin state. Pin 0-7 for port A, 8-15 for port B.
1 = Logic-high 0 = Logic-low
See "3.5.10 Port register".
◆ WritePort()
template<typename Transport >
Writes pins state to a whole port.
1 = Logic-high 0 = Logic-low
See "3.5.10 Port register".
The documentation for this class was generated from the following file: