Permalink
Cannot retrieve contributors at this time
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
only_motion_detector/README.md
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
26 lines (20 sloc)
818 Bytes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Only Motion Detector | |
This project consists of three components: | |
1. **Motion Detection**: Detects motion using cameras (MacBook and iPhone) and publishes notifications to an MQTT topic. | |
2. **Sound Detection**: Detects sound using a microphone and publishes notifications to an MQTT topic. | |
3. **Location Tracking**: Tracks location using MQTT messages and publishes updates to an MQTT topic. | |
## Installation | |
1. Clone the repository: | |
```bash | |
git clone https://github.coventry.ac.uk/4005CMD2425MAYSEP/only_motion_detector.git | |
cd only_motion_detector | |
2. Push to the repository: | |
```bash | |
git status | |
git add . | |
git commit -m "commit message" | |
git checkout -b name_branch #only the first time you are pushing | |
git push origin HEAD | |
3. Pull from the repository: | |
```bash | |
git pull origin main |