Keyestudio Alev Sensörü
124,24 TL
Kategori
Marka
Stok Kodu
Ks0036
13,26 TL den başlayan taksitlerle!
Contents (Hızlı Menü)
Introduction / Tanıtım
This flame sensor can be used to detect fire or other lights whose wavelength stands at 760 nm ~ 1100 nm. In the fire-fighting robot game, the flame plays an important role in the probe, which can be used as the robot's eyes to find fire source.
Bu alev sensörü, ateşi veya dalga boyu 760 nm ~ 1100 nm aralığında olan diğer ışıkları tespit etmek için kullanılabilir. Yangınla mücadele robot oyununda ise, alev kaynağını bulmak için robotun gözleri olarak kullanılabilecek önemli bir rol oynar.
Specifications / Özellikler
- Supply Voltage: 3.3V to 5V
- Detection Range: 20cm (4.8V) ~ 100cm (1V)
- Rang of Spectral Bandwidth: 760nm to 1100nm
- Operating Temperature: -25℃to 85℃
- Interface: Digital
- Size: 44*16.7mm
- Weight: 4g
- Besleme Gerilimi: 3.3V ila 5V
- Algılama Aralığı: 20cm (4.8V) ~ 100cm (1V)
- Spektral Bant Genişliği: 760nm - 1100nm
- Çalışma Sıcaklığı: -25 ℃ - 85 ℃
- Arayüz: Dijital
- Ebat: 44 * 16.7mm
- Ağırlık: 4g
Connection Diagram / Bağlantı Şeması
Sample Code / Örnek Kod
const int flamePin = 2; // the number of the flame pin const int ledPin = 13; // the number of the LED pin // variables will change: int State = 0; // variable for reading status void setup() { // initialize the LED pin as an output: pinMode(ledPin, OUTPUT); // initialize the pushbutton pin as an input: pinMode(flamePin, INPUT); } void loop(){ // read the state of the value: State = digitalRead(flamePin); if (State == HIGH) { // turn LED on: digitalWrite(ledPin, HIGH); } else { // turn LED off: digitalWrite(ledPin, LOW); }
Resources / Kaynaklar
Video
https://drive.google.com/open?id=1dTDZpdRHR3vbMpxszdVfiP4jjeo2Ke0m
Bu ürüne ilk yorumu siz yapın!