This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Yazılım Geliştirme By Robimek - 2015 | |
// www.robimek.com | |
/* PİN BAĞLANTILARI | |
* BLUETOOH BAĞLANTISI >> TX-RX, RX-TX VCC-3.3V, GND-GND | |
* HATEKET SESNÖRÜ BAĞLANTISI >> VCC-5V, GND-GND, SİNYAL-2.DİJİTAL PİN | |
* ALEV SENSÖRÜ BAĞLANTISI >> VCC-5V, GND-GND, ANALOG PİN-ANALOG SIFIR PİN | |
* BUZZER PİN BAĞLANTISI >> VCC-5V, GND-GND, SİNYAL-10.DİJİTAL PİN | |
* SERVO MOTOR BAĞLANTISI >> VCC-5V, GND-GND, SİNYAL-9.DİJİTAL PİN | |
* IŞIKLARIN PİNLERİ | |
* ODA1-3.DİJİTAL PİN |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
char val; // deger tanımlama | |
int S; | |
void setup() | |
{ | |
// cikis pinlerini tanimla | |
pinMode(13, OUTPUT); | |
pinMode(12, OUTPUT); | |
pinMode(11, OUTPUT); | |
pinMode(10, OUTPUT); | |
// seri iletisim ayarlari |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//Yazılım geliştirme by Robimek - 2015 | |
//Yazılım lisans by Robimek | |
char val; | |
#define motorileri 9 | |
#define motorgeri 10 | |
#define motorsol 11 | |
#define motorsag 12 | |
int S; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// SESLİ KONTROL KONUŞAN ROBOT By Robimek | |
//Yazılım Geliştirme By Robimek | |
//Yazılım Lisans By Robimek | |
//www.robimek.com | |
#include <Servo.h>// servo motor kütüphanesi | |
#include <NewPing.h>//ultrasonik sensör kütüphanesi | |
#include <Wtv020sd16p.h> | |
int resetPin = 13; | |
int clockPin = 11; | |
int dataPin = 12; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//Yazılım Geliştirme By Robimek - 2015 | |
//Yazılım Lisans By Robimek | |
//www.robimek.com | |
#include <LiquidCrystal.h> | |
LiquidCrystal LCD(10, 9, 5, 4, 3, 2); | |
int buzzerpin = 6; | |
char distance; | |
void setup() { | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//Yazılım Geliştirme By Robimek – 2015 | |
//Yazılım Lisans By Robimek | |
//www.robimek.com | |
#include <SoftwareSerial.h> | |
#define BT_SERIAL_TX 4 | |
#define BT_SERIAL_RX 3 | |
SoftwareSerial BluetoothSerial(BT_SERIAL_TX, BT_SERIAL_RX); | |
#include <Servo.h> | |
Servo myservo; | |
char servo_val = ' '; |
NewerOlder