Advertisement
AbstractBeliefs

Untitled

Apr 14th, 2011
140
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.12 KB | None | 0 0
  1. void setup(){
  2. pinMode(13, OUTPUT);
  3. pinMode(12, INPUT);
  4. }
  5.  
  6. void loop(){
  7. digitalWrite(13, digitalRead(12));
  8. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement