From 86f209b2b52b1b565facadca359253687a915735 Mon Sep 17 00:00:00 2001 From: ros Date: Fri, 24 Feb 2023 08:47:13 +0100 Subject: [PATCH 1/3] Develop BranchCreation --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 117c69b..939848b 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,3 @@ # Lab1_PhotoPlethysmoGraphy -The basic implementation of PPG +The best implementation of PPG From 6caf3b98d3bd5185cbb726ce8cfe3ebbc08cbcfc Mon Sep 17 00:00:00 2001 From: ros Date: Fri, 24 Feb 2023 08:54:43 +0100 Subject: [PATCH 2/3] Cpp file Creation --- ppg.cpp | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 ppg.cpp diff --git a/ppg.cpp b/ppg.cpp new file mode 100644 index 0000000..b6cb2e7 --- /dev/null +++ b/ppg.cpp @@ -0,0 +1,3 @@ +#include + +std::cout << PPG algorithm << "\n"; From 0a83a90b8d1b7034c0e784835e4ed31e292beef6 Mon Sep 17 00:00:00 2001 From: ros Date: Fri, 24 Feb 2023 09:29:28 +0100 Subject: [PATCH 3/3] Cpp test file prints --- makefile | 7 +++++++ ppg.cpp | 6 +++++- 2 files changed, 12 insertions(+), 1 deletion(-) create mode 100644 makefile diff --git a/makefile b/makefile new file mode 100644 index 0000000..8935eff --- /dev/null +++ b/makefile @@ -0,0 +1,7 @@ +all: ppg + g++ ppg.o -o ppg.exe +ppg: ppg.cpp + g++ -c ppg.cpp +clean: + rm *.o + rm *.exe diff --git a/ppg.cpp b/ppg.cpp index b6cb2e7..f4a7859 100644 --- a/ppg.cpp +++ b/ppg.cpp @@ -1,3 +1,7 @@ #include +using namespace std; -std::cout << PPG algorithm << "\n"; +int main() { + cout << "Hello World!"; + return 0; +}