https://github.com/nicolasanelli/c-language-blood-pressure
This system record your blood pressure measures and allows you to get your history for medical help.
https://github.com/nicolasanelli/c-language-blood-pressure
blood-pressure c language learning medical practice
Last synced: 19 days ago
JSON representation
This system record your blood pressure measures and allows you to get your history for medical help.
- Host: GitHub
- URL: https://github.com/nicolasanelli/c-language-blood-pressure
- Owner: nicolasanelli
- Created: 2020-10-16T12:42:44.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2021-05-22T01:24:01.000Z (almost 4 years ago)
- Last Synced: 2025-04-13T03:17:07.229Z (19 days ago)
- Topics: blood-pressure, c, language, learning, medical, practice
- Language: C
- Homepage:
- Size: 461 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Blood Pressure
This system record your blood pressure measures and allows you to get your history for medical help.
## Prerequisites
For this code, you will need a C language compiler.
## Compiling and running
You can build this system in any linux-based system using gcc in root folder, as follow:
```
$ gcc main.c -o BloodPressure
```This will create a new executable in the project root path named BloodPressure (or BloodPressure.exe on windows). Now you only need to run it:
For Linux/MAC users:
```
./BloodPressure
```For Windows users, just double click on executable program.
## How to use
Considering that this system was developed in C, the use is around choosing options by typing a number of the option, then pressing Enter key to confirm.
### Hidden menu options
There are actually 2 options on main menu, but there are 3 hidden operations used to help on develop and check for code.
- Option **f**: add some fake data for faster tests, this is very useful on pagination tests.
- Option **d**: show the current state of global __history variable, useful to search for insert/update/delete operations.
- Option **a**: trigger a auto-test function, which do unit checks, useful when manipulate core.h functions.Obs: to select these options, you can type then as choosed option on main menu screen.
## Some screens
This is the main menu screen:

This is the add new blood pressure form menu:

Example of confirmation message:

This is list blood pressure measures screen:

## Todo's
- [ ] Create file persistence layer
- [ ] Allow remove records
- [ ] Order by creation date on list screen## Authors
- **Nicolas Anelli** - [Github](https://github.com/NicolasAnelli).
### Considerations:
Feel free for forking this project, and submiting any improvement.
## License
MIT License
Copyright (c) 2020 Nicolas Anelli
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.