Product |
Brick
|
Button Switch Brick
| Bijection Infrared Switch - 8m
Bijection Infrared Switch - 8m
We can build electronics projects just as easy as piling bricks. Arduino and community have made the programming much easier than ever before. How about some elixir on hardware part? Maybe it is not yet convenient to make complex interfaces, but we can at least start from the most commonly used modules.
By using electronic bricks, you may connect Arduino compatible boards easily with various digital, analog and I2C/Uart interfaces. These the breadboard-less firm connection are prepared to extensive modules like poteniometers, sensors, relays, servos...even buttons, just plug and play.
Each terminal module has buckled port with VCC, GND and Output, which has corresponding port on the sensing board, with a plain 2.54mm dual-female cable you may start playing already. Buckled brick cables are like cement for bricks, make the connections easier, secure and more professional looking.
It is very interesting Electronic Brick Module
This module can be used with Arduino Special Sensor Shield V4.0.
You can do some simple design about it,it support“plug and play”。
It is very interesting Electronic Brick Module
This module can be used with Arduino Special Sensor Shield V4.0 by digital sensor cable.
You can do some simple design around it,this brick also support“plug and play”。
The transmitter port of Arduino Bijection Infrared Switch is used to transmit the signal.
Electrical Parameters :
Working voltage: DC5V
Working current: 50 mA
Load Capacity: Max at 100 mA
Detection Distance: 9 ~ 80 cm can be adjusted
The transmitter module have two interfaces port :
The green interface connect with GND;
The red interface connect with 5V VCC .
So we can use the 5V power supply to power this module.
The receiver module have three interfaces port :
The green interface connect with GND ;
The red interface connect with 5V VCC ;
The yellow interface connect with signal .
Through the signal reading from infrared receiver module is different , Arduino will turn on or off the indication LED of No.13 I/O pin of Arduino.
Test Code :
int ledPin = 13;
int switchPin = 7;
int value = 0;
void setup() {
pinMode(switchPin, INPUT);
pinMode(ledPin, OUTPUT);
Serial.begin(9600);
}
void loop() {
value = digitalRead(switchPin);
if (HIGH == value) {
digitalWrite(ledPin, HIGH);
} else {
digitalWrite(ledPin, LOW);
}
//delay(100);
}
Categories
Newsletter
Join our newsletter today, to get latest product information and promotion code.








