← Back to Projects

Person Detection and Alert

A system that detects human presence using sensors and sends alerts. Can be used for security or attendance monitoring.

Person Detection Image

Sample Arduino Code Snippet

if (personDetected()) {
  sendAlert();
  digitalWrite(LED_BUILTIN, HIGH);
}