| 9 | } |
| 10 | |
| 11 | void UselessClass::init(uint8_t pin, uint8_t mode) { |
| 12 | pinMode(pin, INPUT_PULLUP); |
| 13 | enableInterrupt(pin, uselessFunction, mode); |
| 14 | } |
| 15 | |
| 16 | uint8_t UselessClass::getUselessVariable() { |
| 17 | return uselessVariable; |
nothing calls this directly
no outgoing calls
no test coverage detected