Skip to main content

Video Assignment of Mini Project

Smart House Monitoring System 

---------------------------------------------------------------------------

Click the link below to watch the video presentation of my mini project, which is the Smart House Monitoring System. 

https://youtu.be/XWVftUKyL6c

---------------------------------------------------------------------------

Thank you for reading. Feel free to ask me if you have any questions. 

---------------------------------------------------------------------------

Comments

Popular posts from this blog

LAB 1 : D'ARSONVAL GALVANOMETER

--------------------------------------------------------------------------- Please ensure you have installed Multisim software before proceeding.  Click the link here if you want to install the software :   https://www.ni.com/en-my/support/downloads/software-products/download.multisim.html#312060 --------------------------------------------------------------------------- Objectives 1. To find the internal resistance and the currect sensitivity of the galvanometer.  Exercise 1. Set the potentiometer to 510 Ω. Connect the circuit as in the Figure 1.1 and keep the voltage source in minimum position such that voltage output from the voltage terminals  are 0V. 2. Increase the voltage supply and the galvanometer pointer will deflect towards right hand side or left hand side. You can replace the galvanometer with the DMM/Ammeter  in the Multisim. Assume R g is 1.2 Ω for the given galvanometer. Vary the voltage supply until the galvanom...

Lab OS 3

__________________________________________________ ** Before we start the lab, please Install and Launch Linux. ** __________________________________________________  The .bashrc file There are many environment variables we can look at and change. There is a special file, named .bashrc, which is used to store your settings. It is located in the user's home directory. 1. This is a .bashrc file from one of my system :  -Symbol # is used to comment a line. -Command "alias" is used to create an alias. -Control statements used using "if" clause. -If you modified your .bashrc file, do remember to source it using the dot operator.     - For example,  ". .bashrc" __________________________________________________ Dealing with blanks and special characters in filenames The shell treats each item after a blank as another file or parameter. A solution is to use quotes, the backslash, or the Tab key. -I created 3 files with bad names inside folder "bad_names...

Lab 2 : Exploring the ESP32 GPIOs

  --------------------------------------------------------------------------- Please ensure you have installed ESP32 properly in Arduino IDE software before proceeding. Click this link if you want to install Arduino IDE :  https://www.arduino.cc/en/software --------------------------------------------------------------------------- Introduction to ESP32 ESP32 is a series of microcontroller chips like Arduino. It is the advance version of ESP8266 and is loaded with lots of new features.  Below are the specifications of ESP32 :  - ESP32 is dual core. (It has 2 processors.) - It has built-in Wi-Fi and bluetooth. - It runs 32 bits programs. - The clock frequency can go up to 240M Hz.  - It has a 512 kB RAM. - This particular board has 30pins. (There is also a new version which has 36pins.) Datasheet of ESP32 DEVKIT V1 - DOIT (Board that I will use in my lab) --------------------------------------------------------------------------- Part 1 - Use Push Button to Cont...