FYP briefing has been held at TTL1 by Dr. Khairil. The briefing is all about the Demo Presentation Day that will be carried out on 24th April. We also get some explanation on how the distribution of marks for the fyp as per attach below;
Demo - 20%
Report - 20%
Blog - 15%
Technical Paper - 5%
Other than that, I made some simple program on Arduino by referring to the Arduino tutorial to make the buzzer sound non-stop. It does work and the program as follow;
 |
The simple program on Arduino
|
--> The program is not clearly seen so you can refer to below;
int sensorPin = A0; // select the input pin for the potentiometer
int buzzerPin = 9; // select the pin for the buzzer
int sensorValue = 0; // variable to store the value coming from the sensor
void setup() {
pinMode(buzzerPin, OUTPUT); // declare the buzzerPin as an OUTPUT:
}
void loop() {
sensorValue = analogRead(sensorPin); // read the value from the sensor:
digitalWrite(buzzerPin, HIGH); // turn the buzzerPin on
delay(sensorValue); // delay the program
digitalWrite(buzzerPin, LOW); // turn the buzzerPin off:
}