| 44 | } |
| 45 | |
| 46 | inline void digitalWrite(int pin, int value) { |
| 47 | // Mock implementation - could log pin states if needed |
| 48 | if ( pin == value ) return; |
| 49 | else return; |
| 50 | } |
| 51 | |
| 52 | inline int digitalRead(int pin) { |
| 53 | // Mock implementation - return LOW by default |
no outgoing calls
no test coverage detected