Skip to content

Instantly share code, notes, and snippets.

View youkidearitai's full-sized avatar

tekimen youkidearitai

View GitHub Profile
@quanon
quanon / binary_number_counter.ino
Created January 6, 2016 16:25
2 進数カウンター
const int LED4 = 13;
const int LED3 = 12;
const int LED2 = 11;
const int LED1 = 10;
const int BTN1 = 7;
int old_input = LOW;
int new_input = LOW;
int count = 0;