get_pins deprecated
Get current state of all Digital I/O pinsDeprecated
get_pins is deprecated, use get_pin_mode instead.
# Available states for a pin are
| State | Description |
|---|---|
| I | Input |
| O | Output |
| H | High, pin is set to 1 |
| L | Low, pin is set to 0 |
| X | Off, Pin is off |
# Examples
# Sample response
["O", "H", "L", "I", "I", "I", "I", "I", "I", "I", "I", "I", "I", "I", "I", "I"]
1