Difference between revisions of "Open Source Welcome Door Report"
From Microduino Wiki
(→Other Materials) |
(→Bill of Material) |
||
Line 58: | Line 58: | ||
|} | |} | ||
|} | |} | ||
+ | [[File:welcomebom1.jpg|900px|center|thumb]] | ||
==Principle of the Experiment== | ==Principle of the Experiment== |
Revision as of 02:04, 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
|