BangleApps/apps/phystrax/app.js

132 lines
4.0 KiB
JavaScript

let isMeasuring = false;
let currentHR = null;
let lcdTimeout;
let logData = [];
function startMeasure() {
logData = [];
isMeasuring = true;
Bangle.setLCDTimeout(0);
lcdTimeout = setTimeout(() => {
Bangle.setLCDTimeout(50);
}, 50000);
setTimeout(() => {
Bangle.setHRMPower(1); // starts HRM
Bangle.on('HRM', handleHeartRate); // Use function handleHeartRate
Bangle.buzz(200, 10); // Buzz to indicate measurement start
drawScreen();
}, 500);
} // startMeasure
function stopMeasure() {
isMeasuring = false;
clearTimeout(lcdTimeout);
Bangle.setLCDTimeout(10);
Bangle.setHRMPower(0);
Bangle.removeAllListeners('HRM'); //stop HRM
saveDataToCSV(); // Save data to CSV when measurement stops
Bangle.buzz(200, 10); // Buzz to indicate measurement stop
drawScreen();
} //stopMeasure
function handleHeartRate(hrm) {
if (isMeasuring && hrm.confidence > 90) {
// Build the timestamp
let date = new Date();
let dateStr = require("locale").date(date);
let timeStr = require("locale").time(date, 1);
let seconds = date.getSeconds();
let milliseconds = date.getMilliseconds();
// Concatenate date, time, seconds, & milliseconds
let timestamp = `${dateStr} ${timeStr}:${seconds}.${milliseconds}`;
currentHR = hrm.bpm;
logData.push({ timestamp: timestamp, heartRate: currentHR });
drawScreen();
} // if
} // handleHeartRate
function drawScreen(message) {
g.clear(); // Clear the display
// Set the background color
g.setColor('#95E7FF');
// Fill the entire display with the background color
g.fillRect(0, 0, g.getWidth(), g.getHeight());
// Set font and alignment for drawing text
g.setFontAlign(0, 0);
g.setFont('Vector', 15);
// Draw the title
g.setColor('#000000'); // Set text color to black
g.drawString('Heart Rate Monitor', g.getWidth() / 2, 10);
if (isMeasuring) {
// Draw measuring status
g.setFont('6x8', 2);
g.drawString('Measuring...', g.getWidth() / 2, g.getHeight() / 2 - 10);
// Draw current heart rate if available
g.setFont('6x8', 4);
if (currentHR !== null) {
g.drawString(currentHR.toString(), g.getWidth() / 2, g.getHeight() / 2 + 20);
g.setFont('6x8', 1.6);
g.drawString(' BPM', g.getWidth() / 2 + 42, g.getHeight() / 2 + 20);
}
// Draw instructions
g.setFont('6x8', 1.5);
g.drawString('Press button to stop', g.getWidth() / 2, g.getHeight() / 2 + 42);
} else {
// Draw last heart rate
if (currentHR !== null && currentHR > 0) {
g.setFont('Vector', 12);
g.drawString('Last Heart Rate:', g.getWidth() / 2, g.getHeight() / 2 - 20);
g.setFont('6x8', 4);
g.drawString(currentHR.toString(), g.getWidth() / 2, g.getHeight() / 2 + 10);
g.setFont('6x8', 1.6);
g.drawString(' BPM', g.getWidth() / 2 + 42, g.getHeight() / 2 + 12);
} else {
g.setFont('6x8', 2);
g.drawString('No data', g.getWidth() / 2, g.getHeight() / 2 + 5);
g.setFont('6x8', 1);
g.drawString(message || 'Press button to start', g.getWidth() / 2, g.getHeight() / 2 + 30);
} // if
} // if
// Update the display
g.flip();
} // drawScreen
function saveDataToCSV() {
let fileName = "phystrax_hrm.csv";
let file = require("Storage").open(fileName, "a"); // Open the file for appending
// Check if the file is empty (i.e., newly created)
if (file.getLength() === 0) {
// Write the header if the file is empty
file.write("Timestamp,Heart Rate(bpm)\n");
} // if
// Append the data
logData.forEach(entry => {
file.write(`${entry.timestamp},${entry.heartRate}\n`);
});
}
setWatch(function() {
if (!isMeasuring) {
startMeasure();
} else {
stopMeasure();
} // if
}, BTN1, { repeat: true, edge: 'rising' }); // setWatch
drawScreen();