const byte buzzer = 13; //Buzzer 13 numaralı pine bağlı. void setup() { pinMode(buzzer, OUTPUT); Serial.begin(9600); […]
char karakter; void setup() { pinMode(13, OUTPUT); Serial.begin(9600);//Seri iletişimi başlat. } void loop() { if (Serial.available()) […]
const byte buton = 2; void setup() { Serial.begin(9600); //Seri iletişim baudrate ayarı yapıldı. pinMode(buton, […]
const byte LED = 13; const byte buton = 2; boolean butonDurum; void […]
const byte LED = 13; //13 numaralı pini LED değişkenine ata. const byte buton = […]
byte i, x; int sure = 100; void setup() { for (i = 0; i < […]
https://youtu.be/A9p8toNNstU byte i; int sure = 100; void setup() { for (i = 0; i <= […]
void setup() { pinMode(11, OUTPUT); pinMode(10, OUTPUT); pinMode(9, OUTPUT); } void loop() { digitalWrite(11, HIGH); delay(3000); […]
Son Yorumlar