MCPcopy Create free account
hub / github.com/arkhipenko/TaskScheduler / pinMode

Function pinMode

tests/Arduino.h:40–44  ·  view source on GitHub ↗

Mock digital I/O functions

Source from the content-addressed store, hash-verified

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

Callers 3

setupFunction · 0.85
setupFunction · 0.85
setupFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected