Software Requirements Specification

SRS 01 - Water level measurement with flex pressure sensor

Status: Achieved

Code snippet:

uint16_t pressureReading = ADC_Read(Pressure_PIN);
float currentVolume = getVolumeFromAdc(pressureReading);
waterIntakeTotal += lastVolume - currentVolume;
        

SRS 02 - TDS measurements shall be performed on demand, with readings completed within 5 seconds

Status: Achieved

Code snippet:

float tdsValue = getTDS(temperature);
lcd_display("TDS Value", tdsValue);
        

SRS 03 - Heart rate shall be measured on-demand when the bottle is held, with readings completed within 10 seconds

Status: Achieved

Code snippet:

uint16_t pulseReading = ADC_Read(PULSE_PIN);
process_pulse(pulseReading);
        

SRS 04 - The system shall perform wireless communication using the ESP32 Wi-Fi module on the Blynk platform

Status: Achieved

Code snippet:

Blynk.virtualWrite(V0_BPM, bpm);
Blynk.virtualWrite(V1_WATER_INTAKE, waterintake);
Blynk.virtualWrite(V3_TDS, tdsValue);
        

Screenshot:

Blynk Screenshot

SRS 05 - Hydration reminders shall be displayed on the LCD, and sent through the UI if no water consumption is detected for 2 hours during active hours

Status: Achieved

Current implementation:

Code Snippet:

if (current_time - last_change_time >= 25000) {
    progmem_to_ram(buffer, str_drink);
    LCD_drawString(5, 100, buffer, RED, BLACK);
    snprintf(reminder, sizeof(reminder), "%s", buffer);
}

Blynk.virtualWrite(V2_DRINK, "Reminder: Drink Water");
       
    

SRS 06 - Display shall update every second with the current water level, water quality, and heart rate measurement when prompted

Status: Achieved

Code snippet:

progmem_to_ram(buffer, str_heart_rate);
LCD_drawString(5, 20, buffer, WHITE, BLACK);

progmem_to_ram(buffer, str_water_intake);
LCD_drawString(5, 40, buffer, WHITE, BLACK);

progmem_to_ram(buffer, str_water_quality);
LCD_drawString(5, 60, buffer, WHITE, BLACK);
        
Back to Main Page