Fast, arduino compatible digital pin functions
From Just in Time
[[Revision timestamp::20141130234012|]]
Suppose you'd write the following simple arduino-sketch:
<source lang="cpp"> int myPin = 12;
void setup() {
pinMode( myPin, OUTPUT);
}
void loop() {
digitalWrite( myPin, HIGH); digitalWrite( myPin, LOW);
} </source>