Project Work - Second Review
Project Work - Second Review
CLASS BE - CSE
SEMESTER VIII – C
DATE 09-04-2024
Batch Number 10
Name Reg. No.
MARIA PRINCY J N 921320104134
Batch Members S 921320104221
MARSHINIEL SIMONA J 921320104136
Domain EMBEDDED SYSTEM
6. Integration Testing:
Test the integration of all modules to ensure they work together seamlessly.
Verify that data flows correctly between modules and that communication is
established without errors.
Test end-to-end functionality to ensure that the entire system operates as
expected.
7. Performance Testing:
Test the system's performance under different loads to ensure scalability.
Measure response times for biometric authentication, data processing, and
reporting.
Verify that the system can handle concurrent attendance tracking without
significant delays or bottlenecks.
8. Security Testing:
Test the system for vulnerabilities such as unauthorized access to biometric data
or database.
Verify that data transmission is encrypted to prevent interception or tampering.
Ensure compliance with data privacy regulations and standards.
9. Usability Testing:
Gather feedback from users to assess the system's ease of use and user interface.
Identify any usability issues and make necessary improvements to enhance user
experience.
Coding files :
#include <LiquidCrystal.h>
Functional
#include <SimpleDHT.h>
Code
#include <SoftwareSerial.h>
SoftwareSerial myserial(6,7);
LiquidCrystal lcd(8, 9, 10, 11, 12, 13);
#define DHT11PIN 4
SimpleDHT11 dht11(DHT11PIN);
String a;
void setup() {
Serial.begin(9600);
pinMode(5,OUTPUT);
myserial.begin(9600);
lcd.begin(16,2);
lcd.setCursor(0,0);
lcd.print("*PSNA CSE LAB*");
// put your setup code here, to run once
void loop() {
a=Serial.readString();
delay(2000);
if(a=="5300212687D3")
{
Serial.println(1);
delay(50);
lcd.clear();
lcd.setCursor(0,0);
lcd.print("MARIA PRINCY");
lcd.setCursor(0,1);
lcd.print("921320104134");
delay(2000);
}
if(a=="530021317F3C")
{
Serial.println(2);
delay(50);
lcd.clear();
lcd.setCursor(0,0);
lcd.print("SIMONA");
lcd.setCursor(0,1);
lcd.print("921320104136");
delay(2000);
}
if(myserial.available()>0)
{
char red1=myserial.read();delay(100);
if(red1=='1')
{
digitalWrite(5,HIGH);
}
if(red1=='2')
{
digitalWrite(5,LOW);
}
}
}
HARDWAR
E TEST
OUTPUT
OFF STAGE
ON STAGE