code day 2

Yichao Xie and Shiran Guo
// Define the pin connected to the pressure sensor (FSR)const int fsrPin = A0;  // FSR sensor connected to analog pin A0
// Define the threshold value to detect pressureint threshold = 500;  // Adjust this value based on your sensor's response
void setup() {  // Start the serial communication  Serial.begin(9600);
  // Wait for the serial monitor to be ready  while (!Serial) {    ; // Wait for the serial port to connect. Needed for native USB port boards.  }
  // Print a startup message  Serial.println("Pressure Sensor Example Initialized");}
void loop() {  // Read the analog value from the sensor (0 to 1023)  int sensorValue = analogRead(fsrPin);
  // Print the sensor value to the serial monitor (optional)  Serial.print("FSR Value: ");  Serial.println(sensorValue);
  // Check if the sensor value exceeds the threshold  if (sensorValue > threshold) {    Serial.println("Pressure Sensed");  // Print when pressure is detected  }
  // Add a small delay to make the serial output readable  delay(500);  // 500ms delay}