Kayıtlar

C++ YARIŞMA KODLARI/C++ COMPETITION CODES

  #include <unistd.h> #include <locale.h> #include <iostream> using namespace std; float a1,a2,a3,b1,b2,b3 ; int bitis ; int main() {     setlocale ( LC_ALL , "Turkish" );     cout<< "128/4?  " ;     cin>>a1 ;     if (a1==32)     {         cout<< " doğru cevap aferin sana               " ;         cout<< "  2.sorun şu 55*82   " ;         cin>>a2 ;     }     else {         cout<< " görüşürüz yanlış cevap   " ;         return 0;     }     if (a2==4510)     {     ...

C++ DERS ORTALAMASI BULMA KODLARI / C ++ COURSE AVERAGE FINDING CODES

  #include <iostream> #include <locale.h> #include <unistd.h> using namespace std; int main() { int sinav1,sinav2,sonuc ;  //functions: exam1,exam2,result  setlocale(LC_ALL,"Turkish"); // Turkish character command cout<< "birinci sınav sonucunu gir "; //enter the first exam result cin>>sinav1; cout<<"ikinci sınav sonucunu gir ";//enter the second exam result cin>>sinav2; sonuc=(sinav1+sinav2)/2 ;   //command of the average finding process cout<<"ortalaman : "<<sonuc ; //result if(sonuc<70)  // if the result is less than 70 { cout<<"   dersten kaldın"; //you failed the class } if(sonuc>70) //if the result is greater than 70 { cout<<"     dersten geçtin"; //you passed the lesson } if(sonuc==100) //if the result equal the 100 { cout<<"   FULL ÇEKMİŞSİN";  //you got full points in the exam }...

New project/yeni proje

Resim
 the items in this project: Servo motor Buzzer Arduino mega 9V battery Cables Breadboard Rgb led ****************************************** Bu projedeki malzemeler Servo motor Buzzer Arduino mega 9V pil Kablo Breadboard Rgb led

Servo motor kodları (servo codes)

Resim

Servo motor

Resim

Nem sensörü

Resim

Clock module (RTC)

Resim

Arduino uno

ARDUİNO UNO: Arduino uno; arduino adlı robotik kodlama kartı üretici şirketinin ürettiği bir robot mikro denetleyici kartıdır. Robotik uygulamalarına yeni başlayanlar için iyi idealdir. Üzerinde 0 dan 13 e kadar (1=tx 0=rx olmak üzere) dijital, 0 dan 5 e kadar da analog pinler bulunur. gnd pinleri topraklama pinleridir. Vin pini ise ek enerji girişi olarak kullanılır. Kendine özel kod yazma programı vardır. Adı Arduino IDE dir. Bu program visual studio ile çalışır. TEKNİK ÖZELLİKLERİ MİKRODENETLEYİCİ: ATMEGA328 MİNİMUM GERİLİM: 5V MAXİMUM GERİLİM:20V  (ÇOK GEREKMEDİKÇE 20V GERİLİM YÜKLEMEYİN YANGINA SEBEP OLABİLİR) KOD HAFIZASI: 32GB ARDUİNO IDE İNDİRME LİNKİ:  https://www.arduino.cc/en/main/software ********************************************************************************* ARDUİNO UNO: Arduino uno; The robotic coding card called arduino is a robot microcontroller board produced by the manufacturer. Robotic applications are ideal for beginners...