Skip to content

Instantly share code, notes, and snippets.

View mbmjertan's full-sized avatar
🥊

Mario Borna Mjertan mbmjertan

🥊
View GitHub Profile
@mbmjertan
mbmjertan / croduino.ino
Last active December 28, 2015 10:53
Croduino progam 1
const int DO_pin = 2;
const int AO_pin = 0;
int sound;
int led1 = 8;
int led2 = 9;
void setup(){
pinMode(DO_pin, INPUT);
pinMode(led1, OUTPUT);
pinMode(led2, OUTPUT);
}