Araç kaplama için folyo seçimi
Arkadaşlar merhaba, umarım doğru başlık altına konumu açmışımdır
Aracının tavanı boya olmadığı halde atma yapmaya başladı, çok açılan yerlere rötuş yaptırdım.Boya atması devam etmektedir.aracın tavanını ya şeffaf ya da beyaz folyo ile kaplamak istiyorum,hangi ürünü almalıyım destek olursanız sevinirim
Role Çektirme Ardiuno
Arkadaşlar merhabalar,,
butona basınca role 1 sn çekip bırakmasını ve bir daha butona basınca sistemin durmasını istiyorum
Youtube da araştırdım bulamadım.
Sadece butonla çalıştırma ve kapatma sistemi var.
/*
* This is the Arduino code for push button to push Fade ON and Push Fade OFF a and LED
*
* Original code was to turn ON and OFF AC bulbe. watch video instruction on video
* Be carefull working with AC is dangrous. Disconnect from AC power when working and wear protective gloves when touch the AC components.
Update Oct 25, 2019 for John M.
*
* Written by Ahmad Nejrabi for Roboja Video, www.Robojax.com
* Date: Dec 14, 2017, in Ajax, Ontario, Canada
* Permission granted to share this code given that this
* note is kept with the code.
* Disclaimer: this code is "AS IS" and for educational purpose only.
*
*
*/
const int ONTime =4000;// time for Fade ON
const int OFFTime = 4000;// Time for Fade OFF
int pbuttonPin = 2;// connect output to push button
int LEDPin = 3;// Connected to (LED) this must PWM enabled pin that has "~" beside it
int val = 0; // push value from pin 2
int lightON = 0;//light status
int pushed = 0;//push status
void setup() {
// Robojax.com code and video tutorial for push button ON and OFF
Serial.begin(9600);
pinMode(pbuttonPin, INPUT_PULLUP);
pinMode(LEDPin, OUTPUT);
digitalWrite(relayPin, LOW);// keep the LED OFF initially
}
void loop() {
// Robojax.com code and video tutorial for push button ON and OFF
val = digitalRead(pbuttonPin);// read the push button value
if(val == HIGH && lightON == LOW){
pushed = 1-pushed;
delay(100);
}
lightON = val;
if(pushed == HIGH){
Serial.println("LED fading ON");
doFadeON();// fade ON
}else{
Serial.println("LED fading OFF");
doFadeOFF();
}
// Robojax.com code and video tutorial for push button ON and OFF
delay(100);
}
/*
Written by Ahmad Shamshiri
This funciton fades ON an LED to ONTime
*/
void doFadeON()
{
int step =ONTime/255;
for(int i=0; i<255; i +=step)
{
analogwrite(relayPin, i);
delay(255)
}
}
/*
Written by Ahmad Shamshiri
This funciton fades OFF an LED to OFFTime
*/
void doFadeOFF()
{
int step =OFFTimeTime/255;//
for(int i=255; i>0; i -=step)
{
analogwrite(relayPin, i);
delay(255);
}
https://robojax.com/learn/arduino//
Spoiler,
mesajı görmek için tıklayın.Bu kodun neresine butona basınca rolenin 1 sn çekip 3 saniye beklemesini ekleyebilirim
DC motor hakkında
|
WiFi çekimi düzensiz, sorunlu
|
Vodafone tv smart box da kanal açmaması
|
|
Kodi eklenti zil dosyaları
|
|
Lg Sim kart hatası
|
|
Meslek: https://www.facebook.com/furkantekinsen
Donanımhaber deki 11.Yılı |
Son Giriş: 4 ay önce
Son Mesaj Zamanı: 4 ay
Mesaj Sayısı: 223
Gerçek Toplam Mesaj Sayısı: 371
İkinci El Bölümü Mesajları: 39
Konularının görüntülenme sayısı: 17.373 (Bu ay: 190)
Toplam aldığı artı oy sayısı: 24 (Bu hafta: 0)
En çok mesaj yazdığı forum bölümü: Mobil Cihazlar