Project

General

Profile

Statistics
| Branch: | Revision:

robobuggy / arduino / Encoder / encoder / sketch_mar02a / sketch_mar02a.ino @ c5d6b0e8

History | View | Annotate | Download (81 Bytes)

1
int enc = 10;
2

    
3
void setup(){
4
  Serial.begin(9600);
5
  pinMode(enc, OUTPUT);
6
}
7

    
8

    
9