Skip to content

Instantly share code, notes, and snippets.

View sezgingul's full-sized avatar

Sezgin GÜL sezgingul

View GitHub Profile
@sezgingul
sezgingul / Rfid Sesli Kart Okuyucu Projesi
Created January 14, 2017 20:02
Rfid Sesli Kart Okuyucu Projesi
// Rfid Sesli Kart Okuyucu
// Coder: Sezgin GÜL
// www.sezgingul.com
// www.robimek.com
#include <SPI.h>
#include <RFID.h>
#include <Wtv020sd16p.h>
int resetPin = 2;
int clockPin = 3;
int dataPin = 4;
// ADXL345 ivmeölçer 3 Servo Motor kontrolü
#include <Wire.h>
#include <Servo.h>
Servo myservox;
Servo myservoy;
Servo myservoz;
#define DEVICE (0x53)
#define TO_READ (6)
#define TRIGGER 16
@sezgingul
sezgingul / accelerometer 2 servo control
Last active August 29, 2015 14:19
2 servo motor control
// ADXL345 ivmeölçer 2 Servo Motor kontrolü
#include <Wire.h>
#include <Servo.h>
Servo myservox;
Servo myservoy;
#define DEVICE (0x53)
#define TO_READ (6)
#define TRIGGER 16
byte buff[TO_READ] ;
int i;
@sezgingul
sezgingul / Display uygulama
Created March 5, 2015 22:02
Arduino ile 7 Segment Display Uygulaması
// Arduino pin: 2,3,4,5,6,7,8
// Arduino Pin 7 Segment Pin bağlantıları
//2 7 (A)
//3 6 (B)
// 4 4 (C)
// 5 2 (D)
// 6 1 (E)
//7 9 (F)
// 8 10 (G)
@sezgingul
sezgingul / Melodi çalma uygulaması
Created March 5, 2015 19:37
Arduino ile Sd karttan melodi çalma
// Arduino ile melodi çalma uygulaması by Sezgin GÜL
//sd kart moduldeki pin girişleri ** MOSI - pin 11 ** MISO - pin 12** CLK - pin 13** CS - pin 4
#include <SD.h> // sd kart kütüphanesi
#define Sd_Chip_pin 4
#include <TMRpcm.h> // melodi çalma kütüphanesi
char val;
TMRpcm tmrpcm; // melodi fonksiyonu oluşturma
void setup(){