Giter Site home page Giter Site logo

alisherka7 / take-picture-by-pulse-beat-arduino-uno-esp32_cam Goto Github PK

View Code? Open in Web Editor NEW
0.0 2.0 0.0 11 KB

Take a photo using arduino of a hear beat pulse, ESP32-CAM, ARDUINO-UNO,

License: MIT License

C++ 100.00%
arduino arduino-project arduino-sketch arduino-uno esp32-cam heartbeat pulse-sensor takephoto

take-picture-by-pulse-beat-arduino-uno-esp32_cam's Introduction

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...

take-picture-by-pulse-beat-arduino-uno-esp32_cam's People

Contributors

alisherka7 avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.