Kirjeldus
Electronic Brick
Yes! 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.
Overview
This is a simple to use PIR motion sensor with electronic brick interface. Simply connect it to Stem shield and program it, when anyone moves in its detecting range, the sensor outputs HIGH on its S pin.
Feartures
- Electronic Brick interface
- Voltage range: 3V–5V
- Detecting angle: 120 degree
Application Ideas
- Motion sensor
- Thief-guarding System
- SwitchIndustrial automation
Programming
The code below demonstrate a simple instance. When someone moves before the sensor, the led on the arduino board light and “1” is printed on the serial monitor.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
const int ledPin= 13 ; //The led to indicate the motion void setup(){ Serial.begin( 9600 ); pinMode( 2 , INPUT); //Use pin 2 to receive the signal outputted by the module pinMode(ledPin, OUTPUT); } void loop() { int sensorValue = digitalRead( 2 ); if (sensorValue== 1 ) digitalWrite(ledPin,HIGH); else digitalWrite(ledPin,LOW); Serial.println(sensorValue, DEC); //Print the state of the signal through the serial monitor. } |
Specification
Brick Type | Sensor Brick | ||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Brick Interface | 3PIN | ||||||||||||||
Brick Power Supply | 5V | ||||||||||||||
Board Size | 37 × 26 × 1.6mm | ||||||||||||||
Weight | 25.00g | ||||||||||||||
Model | IM120710015
Electronic BrickYes! 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.
OverviewThis is a simple to use PIR motion sensor with electronic brick interface. Simply connect it to Stem shield and program it, when anyone moves in its detecting range, the sensor outputs HIGH on its S pin.
Feartures
Application Ideas
ProgrammingThe code below demonstrate a simple instance. When someone moves before the sensor, the led on the arduino board light and “1” is printed on the serial monitor.
Specification
|
Arvustused
Tooteülevaateid veel ei ole.