Difference between revisions of "Open Source Welcome Door Report"
From Microduino Wiki
(→Bill of Module) |
|||
Line 33: | Line 33: | ||
|[[Microduino-Cube-S1]] ||1||Extension | |[[Microduino-Cube-S1]] ||1||Extension | ||
|- | |- | ||
− | |[[Microduino-PIR]] || | + | |[[Microduino-PIR]] ||2|| Pyroelectric infrared sensor |
|- | |- | ||
|[[Microduino-Color LED]] ||1||Colorful LED lamps | |[[Microduino-Color LED]] ||1||Colorful LED lamps | ||
|} | |} | ||
|width="50%" valign="top" align="left"| | |width="50%" valign="top" align="left"| | ||
+ | |||
===Other Materials=== | ===Other Materials=== | ||
{|class="wikitable" | {|class="wikitable" |
Revision as of 02:00, 17 June 2016
ContentsOutline
Bill of Material
Principle of the Experiment
Program Download
Programming
Installation
Operating Instruction
The Instruction of the Code
{
//First passing D4, then passing D6 is entering.
if((digitalRead(body_pin) == 1) && (digitalRead(body_pin2) == 0))
{
FLAG_1 = 1;
delay(200);
}
if((digitalRead(body_pin) == 1) && (digitalRead(body_pin2) == 1) && (FLAG_1 == 1))
{
colorWipe(color[random(1, 10)]);
audio_choose(1);
Serial.println("COMING IN");
FLAG_1 = 0;
delay(1300); //1300
}
// First passing D6, then passing D4 is leaving.
if((digitalRead(body_pin) == 0) && (digitalRead(body_pin2) == 1))
{
FLAG_2 = 1;
delay(200); //2000
}
if((digitalRead(body_pin) == 1) && (digitalRead(body_pin2) == 1) && (FLAG_2 == 1))
{
colorWipe(color[random(1, 10)]);
audio_choose(2);
Serial.println("GOING OUT");
FLAG_2 = 0;
delay(1300); //2000
}
} FAQ
|