Keyestudio Dijital Eğim Sensörü
126,45 TL
Kategori
Marka
Stok Kodu
KS0025
13,49 TL den başlayan taksitlerle!
Contents (Hızlı Menü)
Introduction / Tanıtım
Tilt Sensor is a digital tilt switch,which can be used as a simple tilt sensor. Simply plug it to our IO/Sensor shield, it can be used to make amazing interactive projects. With dedicated sensor shield and Arduino, you can achieve interesting and interactive work.
Eğim Sensörü, basit bir eğim sensörü olarak kullanılabilecek bir dijital eğim anahtarıdır. Basitçe IO/Sensör shielde takın, şaşırtıcı interaktif projeler yapmak için kullanın. Söz konusu sensör shield ve Arduino ile ilginç ve etkileşimli bir çalışma yolu elde edebilirsiniz.
Specifications / Özellikler
- Supply Voltage: 3.3V to 5V
- Interface: Digital
- Size: 36*20*9 mm
- Weight: 3g
- Besleme Gerilimi: 3.3V ila 5V
- Arayüz: Dijital
- Ebat: 30*20 mm
- Ağırlık: 3g
Connection Diagram / Bağlantı Şeması
Sample Code / Örnek Kod
int ledPin = 13; // Connect LED to pin 13 int switcher = 3; // Connect Tilt sensor to Pin3 void setup() { pinMode(ledPin, OUTPUT); // Set digital pin 13 to output mode pinMode(switcher, INPUT); // Set digital pin 3 to input mode } void loop() { if(digitalRead(switcher)==HIGH) //Read sensor value { digitalWrite(ledPin, HIGH); // Turn on LED when the sensor is tilted } else { digitalWrite(ledPin, LOW); // Turn off LED when the sensor is not triggered } }
Test
Resources / Kaynaklar
Video
https://drive.google.com/open?id=1Jh2n_0j4kI9847SeZXDK1xfWuhPjF3dn
Bu ürüne ilk yorumu siz yapın!