| 60 | DigitalPin& DigitalPin::operator=(const DigitalPin &other) FL_NOEXCEPT = default; |
| 61 | |
| 62 | void DigitalPin::setPinMode(Mode mode) { |
| 63 | mImpl->setPinMode(mode); |
| 64 | } |
| 65 | |
| 66 | bool DigitalPin::high() const { |
| 67 | return mImpl->high(); |
no outgoing calls
no test coverage detected