Actions

Fast, arduino compatible digital pin functions

From Just in Time

Revision as of 23:40, 30 November 2014 by Danny (talk | contribs) (Really only rudimentary beginning of this page)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Work in Progress
This page describes a work in progress. All specifications may change and the final product may significantly deviate from what we describe here. It is very well possible that there will be no final product at all.
Warning.png

[[Revision timestamp::20141130234012|]]

Lotsapins.jpg

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>