Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mae776569/senior-care-server
Senior care is an IOT system that consists of a wearable belt which contains a small hardware device that helps the seniors in their everyday life in case of emergency
https://github.com/mae776569/senior-care-server
hardware hardware-device iot notification
Last synced: 19 days ago
JSON representation
Senior care is an IOT system that consists of a wearable belt which contains a small hardware device that helps the seniors in their everyday life in case of emergency
- Host: GitHub
- URL: https://github.com/mae776569/senior-care-server
- Owner: MAE776569
- License: mit
- Created: 2019-10-14T20:12:09.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2024-11-10T14:35:36.000Z (2 months ago)
- Last Synced: 2024-11-10T15:30:42.087Z (2 months ago)
- Topics: hardware, hardware-device, iot, notification
- Language: PHP
- Homepage:
- Size: 2.36 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Senior Care Server
Senior care is an IOT system that consists of a wearable belt which contains a small hardware device that helps the seniors in their everyday life in case of emergency such as falling or needing any help.
## How to start the server
- install all project dependencies with `composer install`
- make sure to install passport with `php artisan passport:install`
- migrate the database with `php artisan migrate`
- start the development server with `php artisan serve`Before you start the server make sure to start the **database server**
## Project elements
The project consits of three main parts:
1. Hardware device
2. Server and database
3. Mobile app### Hardware
The hardware consists of three parts:
1. Fall detection sensor
2. Push button
3. WiFi module### The server
The server provides the REST API to the mobile application to be able to get the data and interact with it and also connected directly with the mobile app through socket service.
Once one of three action is triggerd (fall detected, button pressed or calling for help), the hardware wil send the data directly to the server and the server will send live notification to the mobile app.
### The mobile application
The application shows the data related to the senior plus the history of the triggered actions using the device, It also shows the location of the senior when a notification is received.