Skip to content

Alisherka7/Take-Picture-by-Pulse-Beat-Arduino-Uno-ESP32_CAM

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Take Picture by Pulse Beat Arduino Uno

Size Limit logo by Anton Lovchikov The project made on arduino allows you to take a picture with the help of a heart pulse

  • To take a photo, simply attach the heart rate sensor to your pet
  • Manage heart rate limitation with smartphone
  • Saving data to a memory card
  • The camera module is in sleep mode until the pulse reaches the desired limit

How It Works

  1. USECASE

Screen Shot 2022-05-01 at 3 16 56

  1. MODULES

Screen Shot 2022-05-01 at 3 21 57

  1. Sketch

Screen Shot 2022-05-01 at 3 22 56

Arduino uno sends a series of pulse data

  1. The series sends a "SHOOT" message if the pulse exceeds the limit
  void loop()
  {
    delay(500);
    Serial.print("심박수 -> ");
    Serial.println(BPM);
  
    if(BPM >= 110 and BPM <= 130)
    {
      delay(2000);
      Serial.write("shoot");
      delay(3000);
      Serial.println();
    }
  }
  1. The camera module will take a picture and save it to the memory card when it receives the desired command "SHOOT"
  void loop() {
  if(Serial.available()){
    String getString = Serial.readString();
    if(getString.equals("shoot")){
      camera_fb_t * fb = NULL;
      // Take Picture with Camera...

Releases

No releases published

Packages

No packages published

Languages