├── .gitignore ├── CODE_OF_CONDUCT.md ├── LICENSE ├── Makefile ├── README.md ├── audio2header.py ├── images └── tuxheart.png ├── install.sh ├── sounds ├── left_ventricle_beat.raw └── right_ventricle_beat.raw └── src ├── devheart.c ├── devheart.h ├── left_ventricle_beat.c ├── left_ventricle_beat_data.h ├── right_ventricle_beat.c └── right_ventricle_beat_data.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timofurrer/devheart/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timofurrer/devheart/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timofurrer/devheart/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timofurrer/devheart/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timofurrer/devheart/HEAD/README.md -------------------------------------------------------------------------------- /audio2header.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timofurrer/devheart/HEAD/audio2header.py -------------------------------------------------------------------------------- /images/tuxheart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timofurrer/devheart/HEAD/images/tuxheart.png -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timofurrer/devheart/HEAD/install.sh -------------------------------------------------------------------------------- /sounds/left_ventricle_beat.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timofurrer/devheart/HEAD/sounds/left_ventricle_beat.raw -------------------------------------------------------------------------------- /sounds/right_ventricle_beat.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timofurrer/devheart/HEAD/sounds/right_ventricle_beat.raw -------------------------------------------------------------------------------- /src/devheart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timofurrer/devheart/HEAD/src/devheart.c -------------------------------------------------------------------------------- /src/devheart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timofurrer/devheart/HEAD/src/devheart.h -------------------------------------------------------------------------------- /src/left_ventricle_beat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timofurrer/devheart/HEAD/src/left_ventricle_beat.c -------------------------------------------------------------------------------- /src/left_ventricle_beat_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timofurrer/devheart/HEAD/src/left_ventricle_beat_data.h -------------------------------------------------------------------------------- /src/right_ventricle_beat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timofurrer/devheart/HEAD/src/right_ventricle_beat.c -------------------------------------------------------------------------------- /src/right_ventricle_beat_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timofurrer/devheart/HEAD/src/right_ventricle_beat_data.h --------------------------------------------------------------------------------