@copydoc Pin::setInput()
| 87 | inline static void setOutput() { _init(); pinMode(PIN, PinMode::Output); } |
| 88 | /// @copydoc Pin::setInput() |
| 89 | inline static void setInput() { _init(); pinMode(PIN, PinMode::Input); } |
| 90 | |
| 91 | /// @copydoc Pin::hi() |
| 92 | inline static void hi() __attribute__ ((always_inline)) { *sPort |= sPinMask; } |