Week # 8- Journal

Ideation

Tell us about your assignment's idea for this week. Why do you care about this idea? What inspired you? (Please include images or links to sources of inspiration)

The Idea is to create smart circuit contains Fan and Buzzer and control them viva mobile Bluetooth.

this idea can used as do smart ventilation system to control by Bluetooth also use a buzzer as alarm system in case of emergency.

Tool Chain

Which software/machines/materials did you use in the assignment? Why?

I used different Thing as below:-

A- Tinkercad to do simulation for the blender components.

B- Bread board, wires, Fan 5V, Buzzer, arduino UNO board, Bluetooth module.

C- BT Terminal App.

Design/Preparation Process

Explain the design and/or preparation process of your assignment. How did you use the tool or software to design and/or prepare your assignment before fabrication/implementation?

The process of simulating come as below:-

Development/Implementation Process

Explain the development/implementation process of your assignment. How did you use the machine/tool to manufacture or implement the design of your assignment?

The implementation process come as STEPS:-

first prepare the components on the work area as below:

Second create the circle :

Note: you shall disconnect the Bluetooth model TX & RX from Arduino board before uploading code from Arduino software to Arduino board because they are using the same serial port which will not transfer data from software to board.

8-0.mp4


char recData = '0';

#define FAN 8

#define BUZ 7

void setup() {


  Serial.begin(9600);

  pinMode(FAN, OUTPUT);

  pinMode(BUZ, OUTPUT);

}


void loop() {


  while (Serial.available() == 0)

    ;

  recData = Serial.read();

  Serial.println(recData);


  if (recData == '1') {

    digitalWrite(FAN, HIGH);

    digitalWrite(BUZ, LOW);

  } else if (recData == '2') {

    digitalWrite(BUZ, HIGH);

    digitalWrite(FAN, LOW);

  } else if (recData == '3') {

    digitalWrite(FAN, HIGH);

    digitalWrite(BUZ, HIGH);

  } else {

    digitalWrite(FAN, LOW);

    digitalWrite(BUZ, LOW);

  }

}

The code show as below:-

Overcoming Challenges

What kinds of challenges or problems did you face while doing the assignment, tutorials, or exercises?  How did you solve them? Did you ask for help from an instructor or peer? Please provide a link to the tutorial or article that you used to solve your problem (if any)

The challenge was problem when I try to connect the Bluetooth model to the mobile, so I can't find the Bluetooth name, I though it is not working but after do brainstorming to stand on the problem I found the i shall do pairing between the Mobile and Bluetooth model before using the APP BT terminal.

Final Project

How can you use the skills and knowledge that you've acquired this week in your final project?

This skill would help me to connect the final project device with the Bluetooth so I can control it and how to use Bluetooth module.

WOW!

What is the coolest thing that you've learned this week? What is something that you will never forget from this week?

Weekly Digest [OPTIONAL]

Tell us about any other cool things that you've made this week: in the Hands-on activity, tutorial examples, exercises, or any other cool mini-project that you tried out aside from the assignment.

Assignment Design Files