Skip to content

Commit

Permalink
ilk yukleme
Browse files Browse the repository at this point in the history
  • Loading branch information
omersavas26 committed Apr 26, 2019
1 parent 3fa6e33 commit e7d6f8d
Show file tree
Hide file tree
Showing 25 changed files with 420,757 additions and 0 deletions.
Empty file added Arduino/.gitkeep
Empty file.
42 changes: 42 additions & 0 deletions Arduino/buzzer.ino
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
int sinyal = 7, buzzer = 8, role = 9;

void cal()
{
digitalWrite(role, HIGH);

int t = 500;
for(int i = 0; i< 5; i++)
{
tone(buzzer, t);
delay(100);
t += 40;
noTone(buzzer);
delay(5);
}

noTone(buzzer);

digitalWrite(role, LOW);
/*delay(500);
digitalWrite(role, HIGH);
delay(500);
digitalWrite(role, LOW);*/

}

void setup() {
delay(60000);
pinMode(sinyal, INPUT);
pinMode(buzzer, OUTPUT);

pinMode(role, OUTPUT);
digitalWrite(role, LOW);
}

void loop()
{
if(digitalRead(sinyal))
{
cal();
}
}
Binary file added Cihaz.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file added Devre/.gitkeep
Empty file.
Binary file added Devre/Pcb.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Devre/devre.fzz
Binary file not shown.
Binary file added Devre/devre.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file added Font/.gitkeep
Empty file.
Binary file added Font/lato.ttf
Binary file not shown.
Binary file added Fotoğraf.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file added Kutu/.gitkeep
Empty file.
Loading

0 comments on commit e7d6f8d

Please sign in to comment.