arduino + ethernet shield + sensor shield

Posted by : Bora Ciner | 28 Kasım 2010 Pazar | Published in



Bora Ciner Ev Kontrol Web Sayfası v2.0

Posted by : Bora Ciner | 15 Kasım 2010 Pazartesi | Published in













Web Üzerinden Ev Kontrol Projesi

Posted by : Bora Ciner | 12 Eylül 2010 Pazar | Published in


Torrent Download

Posted by : Bora Ciner | 27 Nisan 2010 Salı | Published in

ABOUT ME

Posted by : Bora Ciner | 9 Mart 2010 Salı | Published in

I made many projects and some of them are awarded in technical project competition in Turkey.I’m really interested in your projects and want to work for you. When you reply this e-mail, I can send you my CV and what documents you need to have.
I’m experienced in J2ME/J2SE,C# and C++ .Net,Php,linux kernel and device driver programming, communication with the wireless/wired sensors or devices and the process of the recieved datas. I have also experiance in microcontroller programming in Arm9,Arm7,Atmel and PIC microcontrollers in the languages C,Pbasic and Assembly.
Some of my projects are;


Computer Controlled Machine Gun ( www.dreamrobotics.com )


// This project is awarded in 2009 Projistor Technical Project Competiton In Universities of Turkey


Info: A 3-axis platform is loaded with machine gun and it can be work self-controlled by a webcam and a netbook. It detects the human faces and shoot them all with calculating the trigonometric angles and moving the motors.It can be also controlled by wireless 3D-Gyro sensor.The user can control the machine gun robot with a small device located in his hand.The machine gun moves according to the angle of his hand to the ground then It fires when the user moves his index finger. I used C#.Net,Pbasic ,Microcontroller and some protocols to communicate in this project

In self control mode :

The Machine gun detects the human face , moves on x-y axis to shot his head. self firing mode provides the gun fire during 3 seconds..(It can be adjusted to any value)


Spy Keyboard ( www.casusklavye.com )

// This project is awarded in 2010 Projistor Technical Project Competiton In Universities of Turkey

 
A microcontroller hidden in a keyboard works in background and records all the keystorkes with classifying on EEPROM with a capacity of 1.000.000 characters.It also records the passwords, texts and the deleted texts.So
The owner can know what people wrote and sent/deleted. When the owner pushes the specified characthers (secret password to transmit the records). The Keyboard will send all the records with an internal transmitter to a reciever which can be located up to 100 m. away from keyboard.
The reciever is a device in dimensions 5x4x2 cm. and connected to usb port on a pc then it recieves the characters with a speed of 800 characters/second.


Robotic Arm ( www.dreamrobotics.com )

//Its a automation control robotic project, it takes the task list then moves to finish this task in specified moves with time.
I have also many programming projects in virtual machines on Windows OS and Device drivers, Kernel programming experience in Linux.


The Other Projects
I have more projects which I cannot remember the names of, such as remote control pc on twitter etc. They’re in every category.

Remote Control Your Pc On Twitter - C#.Net

Posted by : Bora Ciner | 6 Şubat 2010 Cumartesi | Published in

 

image

Program twitter ‘a bağlanıp status ‘u JSON seri hale getirilmiş textten çözer böylece switch – case yapısı içinde istediğiniz komutu yaptırabilirsiniz..

Kullanıcı adını, şifreyi ve ID numarasını ( RSS sayfasına giridiğinizde adres çubuğundaki sayı)

c:\\twitterconfig\\pass.txt

hedefindeki dosyaya kaydediyoruz..

image

image

Yolda giderken veya bilgisayardan uzaktayken 5 dakikalık bir timer kontrolü ile bilgisayarı kapatabilirsiniz veya downlaodlarınızı başlatabilirsiniz..Gerisi size kalmış ..

Not: Program taskbar da gözükmemesi gerektiği şekilde initilize’ın altında kodlanmıştır

kapat yazdığınızda bilgisayar kendini zorla kapattıracaktır. (Forced Shutdown)

 

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.IO;
using System.Windows.Forms;
using Dimebrain.TweetSharp;
using Newtonsoft.Json;
using Yedda;
using System.Xml;
using System.Runtime.Serialization;

namespace twitter
{
    public partial class frmTweetMyPc : Form
    {
        string userName = "";
        string password = "";
        string userId = "";
        long sayac=0;
        string depo = "";

        public frmTweetMyPc()

        {

            InitializeComponent();
          /*   if (this.ShowInTaskbar)
            {
                this.ShowInTaskbar = false;
            }
            this.WindowState = FormWindowState.Minimized;
            */

            StreamReader tr = new StreamReader("c:\\twitterconfig\\pass.txt");

            userName = tr.ReadLine();
            password = tr.ReadLine();
            userId = tr.ReadLine();
            tr.Close();

        }

        private void button1_Click(object sender, EventArgs e)
        {

        }

        private void timer1_Tick(object sender, EventArgs e)
        {
            sayac++;

            Twitter t = new Twitter();

            richTextBox1.Text = t.Show(userName, password, userId, Twitter.OutputFormatType.JSON);

                int a, b;
                a = richTextBox1.Text.IndexOf("text\":") + 7;

                richTextBox1.Text = richTextBox1.Text.Substring(a);
                b = richTextBox1.Text.IndexOf("\"");
                richTextBox1.Text = richTextBox1.Text.Substring(0, b);

                if (depo.CompareTo(richTextBox1.Text) != 0 || sayac == 1)
                {
                    depo = richTextBox1.Text;

                    switch (richTextBox1.Text)
                    {
                        case "kapat":
                            System.Diagnostics.Process.Start("shutdown", "-s -f -t 100");
                            break;
                        case "msn uzakta":
                            //
                            break;

                    }

                }
                else
                {
                }
            }

    }

    }

Proje Dosyaları : www.dreamrobotics.com/twitter.rar