Mock digital I/O functions
| 38 | |
| 39 | // Mock digital I/O functions |
| 40 | inline void pinMode(int pin, int mode) { |
| 41 | // Mock implementation - do nothing |
| 42 | if ( pin == mode ) return; |
| 43 | else return; |
| 44 | } |
| 45 | |
| 46 | inline void digitalWrite(int pin, int value) { |
| 47 | // Mock implementation - could log pin states if needed |