Difference between revisions of "Open Source Welcome Door Report"
From Microduino Wiki
(→Bill of Module) |
(→Other Materials) |
||
Line 46: | Line 46: | ||
|Micro-USB cable||1||Program download, and power supply | |Micro-USB cable||1||Program download, and power supply | ||
|- | |- | ||
− | |Horn || | + | |Horn ||1||Sound |
|- | |- | ||
|Nylon screws ||10||Module fixation | |Nylon screws ||10||Module fixation |
Revision as of 02:02, 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
|