

The circuit in question is designed around an Arduino UNO microcontroller and includes a GPS NEO 6M module, a MKE-S14 DHT11 Temperature and Humidity Sensor, an ADXL345 accelerometer from Keystudio, and a MAX30102 pulse oximetry and heart-rate sensor. The Arduino UNO serves as the central processing unit, interfacing with the sensors and modules to collect and process data such as location, temperature, humidity, acceleration, and heart rate. The circuit is powered through the Arduino's voltage input pins, and sensor data is communicated to the Arduino via digital and analog pins. The embedded code provided facilitates the initialization and reading of sensor data, which is then output through the Arduino's serial interface.
Vin connected to the 5V power supply lines of GPS NEO 6M and ADXL345 Keystudio3.3V connected to the VIN of MAX30102GND connected to the ground lines of all componentsA4 (SDA) connected to the SDA lines of ADXL345 Keystudio and MAX30102A5 (SCL) connected to the SCL lines of ADXL345 Keystudio and MAX30102D3 connected to the SIG pin of DHT11 Temperature and Humidity SensorD4 connected to the RX pin of GPS NEO 6MD5 connected to the TX pin of GPS NEO 6MVCC connected to the 5V power supplyGND connected to the groundTX connected to Arduino's D5RX connected to Arduino's D4SIG connected to Arduino's D35V connected to the 5V power supplyGND connected to the ground5V connected to the 5V power supplyGND connected to the groundSDA connected to Arduino's A4SCL connected to Arduino's A5VIN connected to Arduino's 3.3VGND connected to the groundSDA connected to Arduino's A4SCL connected to Arduino's A5#include <Wire.h>
#include <Adafruit_Sensor.h>
#include <Adafruit_ADXL345_U.h>
#include <DHT.h>
#include <SoftwareSerial.h>
// Pin definitions
#define HEARTBEAT_PIN A0
#define DHT_PIN 3
#define GPS_RX_PIN 4
#define GPS_TX_PIN 5
// DHT11 setup
#define DHTTYPE DHT11
DHT dht(DHT_PIN, DHTTYPE);
// ADXL345 setup
Adafruit_ADXL345_Unified accel = Adafruit_ADXL345_Unified(12345);
// GPS setup
SoftwareSerial gpsSerial(GPS_RX_PIN, GPS_TX_PIN);
void setup() {
Serial.begin(9600);
gpsSerial.begin(9600);
dht.begin();
if (!accel.begin()) {
Serial.println("No ADXL345 detected!");
while (1);
}
Serial.println("Setup complete.");
}
void loop() {
// Read heartbeat sensor
int heartbeat = analogRead(HEARTBEAT_PIN);
Serial.print("Heartbeat: ");
Serial.println(heartbeat);
// Read DHT11 sensor
float h = dht.readHumidity();
float t = dht.readTemperature();
Serial.print("Humidity: ");
Serial.print(h);
Serial.print(" %\t");
Serial.print("Temperature: ");
Serial.print(t);
Serial.println(" *C");
// Read ADXL345 sensor
sensors_event_t event;
accel.getEvent(&event);
Serial.print("X: ");
Serial.print(event.acceleration.x);
Serial.print(" \tY: ");
Serial.print(event.acceleration.y);
Serial.print(" \tZ: ");
Serial.print(event.acceleration.z);
Serial.println(" m/s^2");
// Read GPS data
while (gpsSerial.available()) {
char c = gpsSerial.read();
Serial.print(c);
}
delay(2000); // Delay for 2 seconds
}
This code initializes and reads data from the connected sensors, then outputs the readings through the Arduino's serial port. It includes setup and loop functions, which are standard in Arduino programming. The setup function initializes the serial communication, sensors, and checks for the presence of the ADXL345 accelerometer. The loop function reads data from the heartbeat sensor, DHT11, ADXL345, and GPS module, then prints the values to the serial monitor.