SPRINT 1 building phase - O-Division-2018-2019/Team-8 GitHub Wiki
Building phase
Pre-polishing
Fabrication plan
Part | Off-the shelf part | custom-made/hand crafted part | Type of Material | Fabrication process needed | Approximate time needed for fabrication |
---|---|---|---|---|---|
Bristle brush rollers | -- | custom-made | bristle mats | fixing to rod and compound gears | 1 hour |
DC motor | yes | -- | stator and rotor | fixing it to the rods with the help of 6 mm nylon pipe | 45 mins |
Jumper wires | yes | -- | solid copper and tin plated wires | proper connections | 30 mins |
Micro-controller(arduino mega AT2560) | yes | -- | pcb | proper connections | 30 mins |
Bread board | yes | -- | hard fibre | fixing and connections | 30 mins |
bevel gears | -- | custom-made | plastic fibre | fixing them to rod and arranging them at 90 degrees | 30 mins |
Interaction aspect details
Subsystem 1 | ||
---|---|---|
subsystem 2 | subsystem 3 | |
Energy interaction | No | Yes |
Data interaction | Yes | No |
Material interaction | Yes | Yes |
spatial interaction | No | Yes |
Explanation:
There is data interaction between subsystem 01 and subsystem 02 as there is passing of the commands for further process. Since there is usage of shoe,there exist material interaction.Between subsystem 01 and 03 supply of power is needed hence there is energy interaction and also there is transfer of liquid polisher for cleaning.Since the dimensions of the shoe are considered there exists spatial interaction between sub system 01 and 03.
Program
void setup
{
Serial.begin(9600);
pinmode(5,OUTPUT);
pinmode(6,OUTPUT);
}
void loop
{
int data==Serial.read()
if (data==1)
{
digitalWrite(5,HIGH);
digitalWrite(6,LOW);
}
}