Merge branch 'develop' into main

This commit is contained in:
Lucas MARAIS 2023-02-24 09:30:52 +01:00
commit 94a6a8788b
3 changed files with 15 additions and 1 deletions

View File

@ -1,3 +1,3 @@
# Lab1_PhotoPlethysmoGraphy
The basic implementation of PPG
The best implementation of PPG

7
makefile Normal file
View File

@ -0,0 +1,7 @@
all: ppg
g++ ppg.o -o ppg.exe
ppg: ppg.cpp
g++ -c ppg.cpp
clean:
rm *.o
rm *.exe

7
ppg.cpp Normal file
View File

@ -0,0 +1,7 @@
#include <iostream>
using namespace std;
int main() {
cout << "Hello World!";
return 0;
}